/*
Theme Name: Tattvam Sweets & Restaurant (Recommended v2)
Theme URI: https://tattvamdxb.com
Author: Tattvam
Author URI: https://tattvamdxb.com
Description: Self-installing premium catering + restaurant theme aligned to the official Tattvam Style Guide (14 Nov). Palette: Dark Olive #252204, Olive Green #828f13, Dark Crimson #3d070e, Bright Red #d81d2e. Typography: Fira Sans (body) + Arnhem Pro/Lora (display) + Nirmala UI (Devanagari accents). On activation auto-creates 16 pages, builds primary navigation with Catering submenu, sets homepage and blog index. All leads route to info@tattvamdxb.com.
Version: 4.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tattvam
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready, blog, restaurant, food
*/

/* ================================================
   TATTVAM STYLE GUIDE COLORS
   ================================================
   #252204  — Dark Olive (text, dark bg)
   #828f13  — Olive Green (accent, secondary)
   #3d070e  — Dark Crimson (headings, footer)
   #d81d2e  — Bright Red (CTAs, buttons)
   ================================================ */

/* --- CSS Variables --- */
:root {
  --color-dark: #252204;
  --color-olive: #828f13;
  --color-olive-light: #9aa81a;
  --color-olive-dark: #6a7a10;
  --color-crimson: #3d070e;
  --color-crimson-light: #5a1020;
  --color-red: #d81d2e;
  --color-red-light: #e8334a;
  --color-red-dark: #b81828;
  --color-cream: #faf8f0;
  --color-cream-dark: #f0ece0;
  --color-gold: #c8a84e;
  --color-gold-light: #dfc06a;
  --color-white: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --font-body:    'Fira Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Arnhem Pro', 'Lora', 'Nirmala UI', Georgia, serif;
  --font-script:  'Nirmala UI', 'Lora', serif;
  --shadow-sm: 0 1px 2px rgba(37, 34, 4, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(37, 34, 4, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(37, 34, 4, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(37, 34, 4, 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-crimson);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-gray-600);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-cream-dark); }
::-webkit-scrollbar-thumb { background: var(--color-olive); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-red); }

/* --- Utility Classes --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-padding { padding: 7rem 0; }
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-red), var(--color-olive));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  max-width: 200px;
  margin: 1.5rem auto;
}

.text-olive { color: var(--color-olive); }
.text-crimson { color: var(--color-crimson); }
.text-red { color: var(--color-red); }
.text-cream { color: var(--color-cream); }
.bg-cream { background-color: var(--color-cream); }
.bg-dark { background-color: var(--color-dark); }
.bg-crimson { background-color: var(--color-crimson); }
.bg-olive { background-color: var(--color-olive); }

/* --- Pattern Overlay --- */
.pattern-overlay {
  background-image: radial-gradient(circle at 1px 1px, rgba(130, 143, 19, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes scrollDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ================================================
   NAVBAR
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(37, 34, 4, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .nav-container { height: 80px; }
}

/* --- Logo (FIXED: Proper visibility) --- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: var(--color-white);
  padding: 3px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-logo img {
    width: 64px;
    height: 64px;
  }
}

.site-header.scrolled .nav-logo img {
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(130, 143, 19, 0.15);
}

.nav-logo:hover img {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(216, 29, 46, 0.15);
}

.nav-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-text { display: block; }
}

.nav-logo-text h1 {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color 0.3s ease;
  margin-bottom: 0;
  line-height: 1.1;
}

.site-header.scrolled .nav-logo-text h1 {
  color: var(--color-crimson);
}

.nav-logo-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
  transition: color 0.3s ease;
}

.site-header.scrolled .nav-logo-text span {
  color: var(--color-olive);
}

/* --- Desktop Navigation --- */
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.site-header.scrolled .nav-menu a {
  color: var(--color-gray-700);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-olive);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.active {
  color: var(--color-red);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-olive));
  border-radius: 2px;
}

/* --- Nav Right --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-badge {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .nav-badge { display: flex; }
}

.site-header.scrolled .nav-badge {
  background: rgba(130, 143, 19, 0.1);
  color: var(--color-olive);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-gold);
  color: var(--color-crimson);
  transition: var(--transition);
}

@media (min-width: 640px) {
  .nav-cta { display: inline-flex; }
}

.nav-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 168, 78, 0.3);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  border-radius: 8px;
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.site-header.scrolled .mobile-menu-btn {
  color: var(--color-crimson);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* --- Mobile Slide Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-cream);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  padding: 2rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 34, 4, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.mobile-menu-close:hover { background: rgba(61, 7, 14, 0.1); }

.mobile-menu .mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-gray-200);
}

.mobile-menu .mobile-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--color-olive);
  object-fit: contain;
  background: var(--color-white);
  padding: 3px;
}

.mobile-menu .mobile-logo h2 {
  font-size: 1.25rem;
  color: var(--color-crimson);
  margin-bottom: 0;
}

.mobile-menu .mobile-logo span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-olive);
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-menu-links a:hover {
  color: var(--color-red);
  background: rgba(216, 29, 46, 0.05);
}

.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin-top: 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu .mobile-cta:hover {
  background: var(--color-red-dark);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37, 34, 4, 0.65), rgba(37, 34, 4, 0.45), rgba(37, 34, 4, 0.75));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 1px 1px, rgba(200, 168, 78, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
}

.hero-float-1 {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(200, 168, 78, 0.2);
  animation: pulse 4s ease-in-out infinite;
}

.hero-float-2 {
  position: absolute;
  bottom: 120px;
  right: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(130, 143, 19, 0.15);
  animation: pulse 5s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(216, 29, 46, 0.4);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.25rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.9s both;
}

.hero-rating svg {
  width: 16px;
  height: 16px;
}

.hero-rating .star-filled { fill: var(--color-gold); color: var(--color-gold); }
.hero-rating .star-empty { fill: rgba(200, 168, 78, 0.4); color: rgba(200, 168, 78, 0.4); }
.hero-rating span { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; margin-left: 8px; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease 1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-crimson);
  box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-red:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(216, 29, 46, 0.3);
}

.btn-olive {
  background: var(--color-olive);
  color: var(--color-white);
}

.btn-olive:hover {
  background: var(--color-olive-dark);
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.6s ease 1.5s both;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}

.scroll-indicator a:hover { color: rgba(255, 255, 255, 0.9); }
.scroll-indicator svg { animation: scrollDown 2s ease-in-out infinite; width: 20px; height: 20px; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(130, 143, 19, 0.05);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200, 168, 78, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.about-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(130, 143, 19, 0.1);
  color: var(--color-olive-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.about-feature-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-olive);
}

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

.about-images .img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-images .img-card:hover img { transform: scale(1.05); }

.about-images .img-tall { height: 220px; }
.about-images .img-short { height: 170px; }

@media (min-width: 640px) {
  .about-images .img-tall { height: 260px; }
  .about-images .img-short { height: 200px; }
}

.about-images .img-card:nth-child(odd) { margin-top: 2rem; }

.about-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: var(--color-crimson);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(200, 168, 78, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(130, 143, 19, 0.1);
  color: var(--color-olive);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background: var(--color-olive);
  color: var(--color-white);
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-crimson);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* ================================================
   MENU SECTION
   ================================================ */
.menu-section {
  background: var(--color-cream);
  position: relative;
}

.menu-section .pattern-overlay {
  position: absolute;
  inset: 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 168, 78, 0.1);
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray-600);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

@media (min-width: 640px) {
  .menu-tab { font-size: 0.875rem; padding: 10px 20px; }
}

.menu-tab:hover {
  color: var(--color-olive);
  background: rgba(130, 143, 19, 0.05);
}

.menu-tab.active {
  background: var(--color-olive);
  color: var(--color-white);
}

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

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(130, 143, 19, 0.12);
}

.menu-card.featured {
  border-color: rgba(200, 168, 78, 0.3);
}

.menu-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-olive));
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-crimson);
  line-height: 1.3;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-olive);
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid;
}

.tag-bestseller { background: rgba(200, 168, 78, 0.12); color: #8a6d15; border-color: rgba(200, 168, 78, 0.3); }
.tag-spicy { background: rgba(216, 29, 46, 0.06); color: var(--color-red); border-color: rgba(216, 29, 46, 0.2); }
.tag-jain { background: rgba(34, 139, 34, 0.06); color: #166534; border-color: rgba(34, 139, 34, 0.2); }
.tag-chefs-special { background: rgba(130, 143, 19, 0.08); color: var(--color-olive-dark); border-color: rgba(130, 143, 19, 0.3); }
.tag-signature { background: rgba(200, 168, 78, 0.12); color: #8a6d15; border-color: rgba(200, 168, 78, 0.3); }
.tag-unique { background: rgba(216, 29, 46, 0.06); color: var(--color-red); border-color: rgba(216, 29, 46, 0.2); }

.tag svg { width: 10px; height: 10px; }

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

.menu-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-legend-item svg { width: 12px; height: 12px; }

/* ================================================
   SPECIALS / WHY CHOOSE US
   ================================================ */
.specials-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .specials-grid { grid-template-columns: repeat(3, 1fr); }
}

.special-card {
  background: var(--color-cream);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid rgba(200, 168, 78, 0.1);
  transition: var(--transition);
}

.special-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: 0 10px 30px rgba(130, 143, 19, 0.08);
}

.special-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.special-icon svg { width: 28px; height: 28px; }

.special-icon-olive { background: rgba(130, 143, 19, 0.1); color: var(--color-olive); }
.special-icon-red { background: rgba(216, 29, 46, 0.08); color: var(--color-red); }
.special-icon-gold { background: rgba(200, 168, 78, 0.12); color: #8a6d15; }
.special-icon-crimson { background: rgba(61, 7, 14, 0.06); color: var(--color-crimson); }

.special-card:hover .special-icon-olive { background: var(--color-olive); color: var(--color-white); }
.special-card:hover .special-icon-red { background: var(--color-red); color: var(--color-white); }
.special-card:hover .special-icon-gold { background: var(--color-gold); color: var(--color-white); }
.special-card:hover .special-icon-crimson { background: var(--color-crimson); color: var(--color-white); }

.special-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.special-card:hover h3 { color: var(--color-red); }

.special-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* ================================================
   SIGNATURE DISHES
   ================================================ */
.signature-section {
  background: var(--color-crimson);
  position: relative;
  overflow: hidden;
}

.signature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-red), var(--color-olive));
}

.signature-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-red), var(--color-olive));
}

.signature-section .section-label { color: var(--color-olive-light); }

.signature-section .section-title { color: var(--color-white); }

.signature-section .section-title span { color: var(--color-gold); }

.signature-section .section-title ~ p { color: rgba(255, 255, 255, 0.6); }

.carousel-nav {
  display: none;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .carousel-nav { display: flex; }
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-btn svg { width: 16px; height: 16px; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .carousel-item { width: 340px; }
}

.carousel-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  height: 100%;
}

.carousel-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .carousel-img { height: 240px; }
}

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

.carousel-card:hover .carousel-img img { transform: scale(1.1); }

.carousel-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.carousel-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.carousel-tag svg { width: 12px; height: 12px; fill: var(--color-white); }

.carousel-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-crimson);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
}

.carousel-content {
  padding: 1.25rem;
}

.carousel-content h3 {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.carousel-card:hover .carousel-content h3 { color: var(--color-gold); }

.carousel-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  background: var(--color-cream);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  border: 1px solid rgba(200, 168, 78, 0.1);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200, 168, 78, 0.25);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.08;
}

.testimonial-quote svg { width: 40px; height: 40px; color: var(--color-red); }
.testimonial-card:hover .testimonial-quote { opacity: 0.15; }

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg { width: 16px; height: 16px; }
.star-filled { fill: var(--color-gold); color: var(--color-gold); }
.star-empty { fill: var(--color-gray-200); color: var(--color-gray-200); }

.testimonial-text {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-crimson);
}

.testimonial-platform {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-form-wrapper {
  background: var(--color-cream);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid rgba(200, 168, 78, 0.1);
}

@media (min-width: 640px) {
  .contact-form-wrapper { padding: 2.5rem; }
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

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

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 168, 78, 0.2);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(130, 143, 19, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--color-red-dark);
  box-shadow: 0 4px 15px rgba(216, 29, 46, 0.3);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 168, 78, 0.1);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(200, 168, 78, 0.25);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(130, 143, 19, 0.1);
  color: var(--color-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.875rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.contact-social span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link svg { width: 20px; height: 20px; }

.social-link-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--color-white);
}

.social-link-instagram:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3); }

.social-link-facebook {
  background: #1877f2;
  color: var(--color-white);
}

.social-link-facebook:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3); }

.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(200, 168, 78, 0.1);
  margin-bottom: 1.5rem;
}

.contact-map-inner {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(130, 143, 19, 0.05), rgba(200, 168, 78, 0.05));
}

@media (min-width: 640px) {
  .contact-map-inner { height: 240px; }
}

.contact-map-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(130, 143, 19, 0.15);
  color: var(--color-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-map-icon svg { width: 28px; height: 28px; }

.contact-map h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.contact-map p {
  font-size: 0.875rem;
  text-align: center;
  max-width: 320px;
  margin: 0 auto 12px;
}

.contact-map a {
  color: var(--color-olive);
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-map a:hover { color: var(--color-red); }

.delivery-partners {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 168, 78, 0.1);
}

.delivery-partners span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

.delivery-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-crimson);
  padding: 4px 12px;
  border-radius: var(--radius-md);
}

.delivery-badge-noon {
  background: rgba(255, 196, 0, 0.10);
  border: 1px solid rgba(255, 196, 0, 0.25);
}
.delivery-badge-keeta {
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.18);
}
.delivery-badge-careem {
  background: rgba(0, 178, 169, 0.08);
  border: 1px solid rgba(0, 178, 169, 0.18);
}
.delivery-badge-smiles {
  background: rgba(247, 121, 32, 0.08);
  border: 1px solid rgba(247, 121, 32, 0.18);
}
.delivery-badge-deliveroo {
  background: rgba(0, 204, 188, 0.08);
  border: 1px solid rgba(0, 204, 188, 0.18);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--color-crimson);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-red), var(--color-olive));
}

.footer-content {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(200, 168, 78, 0.5);
  object-fit: contain;
  background: var(--color-white);
  padding: 3px;
}

.footer-brand h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0;
}

.footer-brand span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-red);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-heading {
  font-size: 1.125rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--color-gold); }

.footer-links .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 168, 78, 0.4);
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-olive-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-credit svg { width: 12px; height: 12px; fill: var(--color-red); color: var(--color-red); }

/* ================================================
   WORDPRESS SPECIFIC
   ================================================ */

/* --- WordPress Alignment Classes --- */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1em; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); }

/* --- WordPress Captions --- */
.wp-caption { max-width: 100%; margin-bottom: 1rem; }
.wp-caption-text { font-size: 0.875rem; color: var(--color-gray-500); text-align: center; padding: 0.5rem; }

/* --- WordPress Gallery --- */
.gallery { display: grid; gap: 0.5rem; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* --- WordPress Post Navigation --- */
.post-navigation { padding: 2rem 0; border-top: 1px solid var(--color-gray-200); }
.post-navigation a { color: var(--color-olive); font-weight: 600; }
.post-navigation a:hover { color: var(--color-red); }

/* --- WordPress Comments --- */
.comments-area { padding: 2rem 0; border-top: 1px solid var(--color-gray-200); }
.comment-list { list-style: none; }
.comment-author { font-weight: 600; color: var(--color-crimson); }
.comment-content p { color: var(--color-gray-600); }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 10px; border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md); font-family: var(--font-body);
}

/* --- Screen Reader Text --- */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute;
  width: 1px; word-wrap: normal !important;
}

/* --- Blog / Page Content --- */
.entry-content { max-width: 800px; margin: 0 auto; padding: 2rem 0; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-bottom: 1rem; margin-top: 2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; color: var(--color-gray-600); }
.entry-content img { border-radius: var(--radius-lg); margin: 1rem 0; }

/* ================================================
   ===========  V2 ADDITIONS BELOW  ================
   ================================================ */

/* --- Topbar utility strip --- */
.topbar {
  background: var(--color-crimson);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.92); }
.topbar-item:hover { color: var(--color-gold-light); }
.topbar-spacer { flex: 1; }
.topbar-rating strong { color: var(--color-gold-light); }
.topbar-rating-count { color: rgba(255,255,255,0.55); margin-right: 4px; }
@media (max-width: 768px) {
  .topbar-loc, .topbar-hours { display: none; }
  .topbar-inner { gap: 0.75rem; justify-content: space-between; }
}

/* Header pushed below topbar */
.site-header { top: 36px; }
@media (max-width: 768px) { .site-header { top: 32px; } }
.site-header.scrolled { top: 0; }

/* --- Nav CTAs: WhatsApp + secondary --- */
.nav-cta-whatsapp {
  background: #25d366;
  color: #fff;
}
.nav-cta-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.nav-cta-secondary {
  display: none;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.25);
}
@media (min-width: 768px) { .nav-cta-secondary { display: inline-flex; } }
.site-header.scrolled .nav-cta-secondary {
  background: var(--color-cream-dark);
  color: var(--color-crimson);
  border-color: var(--color-gray-300);
}

/* --- Hero trust strip --- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 1rem auto 1.5rem;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.hero-trust-stars { display: inline-flex; gap: 1px; }
.hero-trust-item strong { color: var(--color-gold-light); font-size: 1rem; }
.hero-trust-sep { opacity: 0.5; }
.hero-trust-tags { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.hero-trust-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Buttons: WhatsApp + Block --- */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* --- Seasonal strip --- */
.seasonal-strip {
  background: linear-gradient(90deg, var(--color-olive-dark), var(--color-olive));
  color: var(--color-white);
  padding: 14px 0;
}
.seasonal-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.seasonal-pill {
  background: var(--color-gold);
  color: var(--color-crimson);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.seasonal-text { font-size: 0.95rem; }
.seasonal-cta {
  color: var(--color-gold-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}
.seasonal-cta:hover { color: #fff; }

/* --- Unlimited Thali section --- */
.thali-section {
  background: linear-gradient(135deg, var(--color-cream) 0%, #f4ead0 100%);
  position: relative;
  overflow: hidden;
}
.thali-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .thali-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.thali-text .section-divider { margin: 1rem 0; }
.thali-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
}
.thali-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.thali-price-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.thali-price-card-featured {
  background: var(--color-crimson);
  color: var(--color-white);
  border-color: var(--color-crimson);
}
.thali-price-card-featured .thali-price-label { color: var(--color-gold-light); }
.thali-price-card-featured .thali-price-sub { color: rgba(255,255,255,0.7); }
.thali-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-olive);
  font-weight: 600;
  margin-bottom: 4px;
}
.thali-price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: inherit;
  line-height: 1;
}
.thali-price-card-featured .thali-price-value { color: var(--color-white); }
.thali-price-sub { font-size: 0.78rem; color: var(--color-gray-500); margin-top: 4px; }
.thali-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.25rem; }
.thali-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  padding: 5px 12px;
  background: rgba(34,139,34,0.08);
  color: var(--color-gray-700);
  border-radius: var(--radius-full);
}
.dot-green { background: #228b22 !important; }
.thali-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.thali-visual { position: relative; }
.thali-image-stack {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.thali-image-stack img { width: 100%; height: 460px; object-fit: cover; }
.thali-image-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-crimson);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* --- Menu filters --- */
.menu-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 14px 18px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}
.menu-filters-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  font-weight: 600;
  margin-right: 4px;
}
.menu-filter-btn {
  padding: 6px 14px;
  border: 1px solid var(--color-gray-200);
  background: transparent;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.menu-filter-btn:hover {
  border-color: var(--color-olive);
  color: var(--color-olive);
}
.menu-filter-btn.active {
  background: var(--color-crimson);
  border-color: var(--color-crimson);
  color: var(--color-white);
}
.menu-empty {
  text-align: center;
  padding: 2rem;
  color: var(--color-gray-500);
  background: var(--color-cream-dark);
  border-radius: var(--radius-lg);
}

/* --- Mithai section --- */
.mithai-section {
  background: var(--color-white);
}
.mithai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .mithai-grid { grid-template-columns: repeat(3, 1fr); } }
.mithai-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.mithai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.mithai-card img { width: 100%; height: 220px; object-fit: cover; }
.mithai-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.mithai-card h3 { margin-bottom: 0.5rem; color: var(--color-crimson); }
.mithai-card p { flex: 1; color: var(--color-gray-600); margin-bottom: 1rem; }
.link-arrow {
  color: var(--color-red);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { color: var(--color-crimson); }

/* --- Catering / Pricing tiers --- */
.catering-section { background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%); }
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
@media (min-width: 768px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.tier-card-featured {
  background: linear-gradient(160deg, var(--color-crimson) 0%, var(--color-crimson-light) 100%);
  color: var(--color-white);
  border-color: var(--color-crimson);
  transform: scale(1.02);
}
.tier-card-featured h3,
.tier-card-featured .tier-price { color: var(--color-white); }
.tier-card-featured .tier-price span,
.tier-card-featured .tier-sub { color: rgba(255,255,255,0.7); }
.tier-card-featured .tier-features li { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.12); }
.tier-card-featured .tier-features li::before { color: var(--color-gold-light); }
.tier-ribbon {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--color-gold);
  color: var(--color-crimson);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card h3 { margin-bottom: 0.5rem; color: var(--color-crimson); }
.tier-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-crimson);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price span { font-size: 1rem; font-weight: 500; color: var(--color-gray-500); }
.tier-sub { font-size: 0.85rem; color: var(--color-gray-500); margin-bottom: 1.25rem; }
.tier-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.tier-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
  padding-left: 20px;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-olive);
  font-weight: 700;
}

/* --- Lead form wrapper --- */
.lead-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
.lead-form-wrapper h3 { margin-bottom: 0.5rem; color: var(--color-crimson); }
.lead-form-wrapper p { color: var(--color-gray-600); margin-bottom: 1.5rem; }
.form-alt {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--color-olive);
  font-size: 0.85rem;
}
.form-alt:hover { color: var(--color-red); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
  background: rgba(34,139,34,0.06);
  border-radius: var(--radius-lg);
}
.form-success h4 { color: var(--color-crimson); margin-bottom: 0.5rem; }

/* --- Tiffin --- */
.tiffin-section {
  background: var(--color-crimson);
  color: var(--color-white);
}
.tiffin-section .section-title,
.tiffin-section .section-label { color: var(--color-white); }
.tiffin-section .section-label { color: var(--color-gold-light); }
.tiffin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .tiffin-grid { grid-template-columns: 1.1fr 1fr; } }
.tiffin-text p { color: rgba(255,255,255,0.75); }
.tiffin-features { list-style: none; padding: 0; margin: 1.25rem 0; }
.tiffin-features li {
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  position: relative;
}
.tiffin-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-gold-light);
  font-weight: 700;
}
.tiffin-plans { display: grid; gap: 1rem; }
.tiffin-plan {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.tiffin-plan-featured {
  background: var(--color-white);
  color: var(--color-crimson);
  border-color: var(--color-white);
}
.tiffin-plan-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.tiffin-plan-featured .tiffin-plan-name { color: var(--color-olive); }
.tiffin-plan-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}
.tiffin-plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.tiffin-plan-featured .tiffin-plan-price span { color: var(--color-gray-500); }

/* --- Reviews summary --- */
.reviews-summary { display: flex; justify-content: center; margin: 1.5rem 0 2.5rem; }
.reviews-summary-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}
.reviews-summary-rating {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-crimson);
  line-height: 1;
}
.reviews-summary-stars { display: flex; justify-content: center; gap: 2px; margin: 8px 0; }
.reviews-summary-meta {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

/* --- Press strip --- */
.press-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}
.press-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  font-weight: 600;
}
.press-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gray-600);
  font-style: italic;
}

/* --- Contact info card variants --- */
.contact-info-card-whatsapp { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.2); }
.contact-info-card-whatsapp .contact-info-icon { background: #25d366; color: #fff; }

/* --- Mobile CTAs --- */
.mobile-cta-call { background: var(--color-crimson); color: var(--color-white); }
.mobile-cta-whatsapp { background: #25d366; color: #fff; margin-top: 8px; }
.mobile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  text-align: center;
}

/* --- Sticky mobile action bar --- */
.sticky-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-crimson);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-action-bar.visible { transform: translateY(0); }
.sab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.sab-btn:last-child { border-right: none; }
.sab-btn:hover, .sab-btn:active { background: rgba(255,255,255,0.08); }
.sab-whatsapp { background: #25d366; }
.sab-whatsapp:hover { background: #1ebe5d; }
@media (min-width: 769px) { .sticky-action-bar { display: none; } }

/* Extra spacing so sticky bar doesn't cover content */
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
}

/* --- Footer cuisines list --- */
.footer-cuisines span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-cuisines { display: flex; flex-direction: column; }

/* --- Delivery badges (now clickable links) --- */
.delivery-badge { transition: var(--transition); }
.delivery-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* --- Section header label override for kathiyawadi gradient --- */
.thali-section .section-label,
.catering-section .section-label,
.mithai-section .section-label { color: var(--color-olive); }

/* --- Better hero buttons stacking on mobile --- */
@media (max-width: 540px) {
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* --- About badge tweak (reused from existing) --- */
.about-badge { z-index: 2; }


/* ================================================
   ===========  V3 PREMIUM CATERING  ===============
   ================================================ */

/* ----------------------------------------------------
 * OFFICIAL TATTVAM BRAND PALETTE (Style Guide 14 Nov)
 *   #252204  Dark Olive    — text, dark sections
 *   #828f13  Olive Green   — secondary accent
 *   #3d070e  Dark Crimson  — primary brand, dark BGs
 *   #d81d2e  Bright Red    — CTAs, energy accent
 * Fonts: Fira Sans (primary), Nirmala (primary), Arnhem Pro (secondary)
 * Web-safe display fallback: Lora (closest free Arnhem Pro analogue)
 *
 * The "--c-emerald-*" / "--c-gold-*" variable names are kept (aliased)
 * so existing component CSS continues working without rewrites.
 * ---------------------------------------------------- */
:root {
  --c-crimson-deep:  #3d070e;
  --c-crimson:       #5a1020;
  --c-crimson-soft:  #74182a;
  --c-olive:         #828f13;
  --c-olive-soft:    #9aa81a;
  --c-olive-deep:    #6a7a10;
  --c-red:           #d81d2e;
  --c-red-soft:      #e8334a;
  --c-red-deep:      #b81828;
  --c-ivory:         #faf8f0;
  --c-ivory-muted:   #f0ece0;
  --c-dark:          #252204;
  --c-ink:           #252204;
  --c-clay:          #8c5a3c;

  /* Legacy v3 aliases → mapped to official palette so v3 components keep working.
     Emerald surfaces become Dark Crimson. Gold accents become Olive (for text on
     dark sections — red-on-red is illegible) and Bright Red (for CTAs only). */
  --c-emerald-deep:  #3d070e;
  --c-emerald:       #5a1020;
  --c-emerald-soft:  #74182a;
  --c-gold:          #d81d2e;      /* CTAs, buttons */
  --c-gold-soft:     #c9d36a;      /* light olive — readable text on dark crimson */
  --c-gold-deep:     #828f13;      /* olive — labels/eyebrows on light surfaces */
  --c-star:          #c8a84e;      /* yellow star icon — universal, brand-safe */

  /* Typography — Arnhem Pro preferred, Lora as web-safe fallback */
  --font-display:    'Arnhem Pro', 'Lora', 'Nirmala UI', Georgia, serif;
}

/* If you have Arnhem Pro licensed, drop the .woff2 files into
   assets/fonts/ and uncomment this block:
@font-face {
  font-family: 'Arnhem Pro';
  src: url('assets/fonts/ArnhemPro-Normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Arnhem Pro';
  src: url('assets/fonts/ArnhemPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
*/

/* Body bg shifts to ivory on the front-page (still warm, more premium than cream) */
.tattvam-front-page { background: var(--c-ivory); }

/* Premium headings on front-page */
.tattvam-front-page h1,
.tattvam-front-page h2,
.tattvam-front-page h3 { font-family: var(--font-display); letter-spacing: -0.01em; color: var(--c-emerald-deep); }

/* ----- Cinematic Hero rebuild ----- */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--c-emerald-deep);
}
.hero-cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-cinema-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-cinema-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,37,25,0.35) 0%, rgba(20,37,25,0.55) 60%, rgba(20,37,25,0.85) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(20,37,25,0) 0%, rgba(20,37,25,0.45) 100%);
  z-index: 1;
}
.hero-cinema-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
}
.hero-cinema-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(201,163,94,0.4);
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-cinema-eyebrow::before,
.hero-cinema-eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--c-gold);
}
.hero-cinema-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-cinema-title em {
  font-style: italic;
  color: var(--c-gold-soft);
  font-weight: 500;
}
.hero-cinema-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-cinema-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-emerald-deep);
  border: 1px solid var(--c-gold);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--c-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,163,94,0.3);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* Hero trust strip rebuilt */
.hero-cinema-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}
.hero-cinema-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cinema-trust-item strong { color: var(--c-gold-soft); font-weight: 600; }
.hero-cinema-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@media (max-width: 768px) {
  .hero-cinema-content { padding: 6rem 1.25rem 4rem; }
  .hero-cinema-trust { gap: 1.25rem; }
}

/* ----- Premium section base ----- */
.section-premium {
  padding: 7rem 0;
  background: var(--c-ivory);
}
@media (max-width: 768px) { .section-premium { padding: 4rem 0; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}
.section-display-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-emerald-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.section-display-title em { font-style: italic; color: var(--c-gold-deep); font-weight: 500; }
.section-display-lede {
  font-size: 1.08rem;
  color: rgba(26,20,16,0.7);
  max-width: 640px;
  line-height: 1.65;
}
.section-head-center {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 720px;
}
.section-head-center .section-eyebrow { justify-content: center; }
.section-head-center .section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}
.section-head-center .section-display-lede { margin-inline: auto; }

/* ----- The Tattvam Difference (6-icon grid) ----- */
.section-difference { background: var(--c-ivory); }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-ivory-muted);
  border: 1px solid var(--c-ivory-muted);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) { .difference-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .difference-grid { grid-template-columns: 1fr; } }
.difference-cell {
  background: var(--c-ivory);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s ease;
}
.difference-cell:hover { background: #fffbf2; }
.difference-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-deep);
  border: 1px solid var(--c-gold);
  border-radius: 50%;
}
.difference-cell h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-emerald-deep);
}
.difference-cell p {
  font-size: 0.92rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.55;
  margin: 0;
}

/* ----- Corporate Catering Packages ----- */
.section-packages {
  background: var(--c-emerald-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,163,94,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,163,94,0.06) 0%, transparent 50%);
  z-index: 0;
}
.section-packages > * { position: relative; z-index: 1; }
.section-packages .section-display-title { color: #fff; }
.section-packages .section-display-title em { color: var(--c-gold-soft); }
.section-packages .section-display-lede { color: rgba(255,255,255,0.75); }
.section-packages .section-eyebrow { color: var(--c-gold-soft); }
.section-packages .section-eyebrow::before,
.section-packages .section-eyebrow::after { background: var(--c-gold); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .package-grid { grid-template-columns: 1fr; } }

.package-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.package-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,163,94,0.3);
  transform: translateY(-4px);
}
.package-card-featured {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-emerald-deep);
}
.package-card-featured .package-name,
.package-card-featured .package-price,
.package-card-featured .package-feature,
.package-card-featured .package-meta { color: var(--c-emerald-deep) !important; }
.package-card-featured .package-feature::before { color: var(--c-emerald) !important; }
.package-card-featured .package-meta-label { color: rgba(20,37,25,0.6) !important; }

.package-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-emerald-deep);
  color: var(--c-gold);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--c-gold);
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.package-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.package-card-featured .package-tagline { color: rgba(20,37,25,0.65); }
.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.package-price-small { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.55); margin-left: 4px; }
.package-card-featured .package-price-small { color: rgba(20,37,25,0.55); }
.package-divider {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.5rem 0;
}
.package-card-featured .package-divider { background: var(--c-emerald-deep); }
.package-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.package-meta-row { display: flex; justify-content: space-between; }
.package-meta-label { color: rgba(255,255,255,0.5); }
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.package-feature {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.package-feature:last-child { border-bottom: none; }
.package-feature::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 0.65rem;
  top: 13px;
}
.package-cta { margin-top: auto; }
.package-cta .btn-gold { width: 100%; justify-content: center; }
.package-cta .btn-ghost { width: 100%; justify-content: center; }
.package-card-featured .btn-gold {
  background: var(--c-emerald-deep);
  color: var(--c-gold);
  border-color: var(--c-emerald-deep);
}
.package-card-featured .btn-gold:hover { background: var(--c-emerald); }

/* ----- Featured Experiences (horizontal scroll) ----- */
.section-experiences { background: var(--c-ivory); }
.experiences-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.experiences-track::-webkit-scrollbar { display: none; }
.experience-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-emerald-deep);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}
.experience-card:hover { transform: translateY(-4px); }
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-card:hover img { transform: scale(1.04); }
.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,37,25,0.85) 100%);
  z-index: 1;
}
.experience-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  color: #fff;
}
.experience-meta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 6px;
}
.experience-meta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.experience-meta-cta {
  font-size: 0.85rem;
  color: var(--c-gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
}

/* ----- Trusted By (logo strip + testimonials) ----- */
.section-trust { background: var(--c-ivory-muted); }
.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid rgba(26,20,16,0.1);
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .trust-logos { grid-template-columns: repeat(2, 1fr); } }
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(26,20,16,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.trust-logo:hover { color: var(--c-emerald-deep); }

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .trust-testimonials { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--c-ivory);
  padding: 2rem;
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: 4px;
  position: relative;
}
.trust-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-emerald-deep);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--c-gold);
}
.trust-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-emerald-deep);
  color: var(--c-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.trust-card-name {
  font-weight: 600;
  color: var(--c-emerald-deep);
  font-size: 0.92rem;
}
.trust-card-title {
  font-size: 0.78rem;
  color: rgba(26,20,16,0.55);
}

/* ----- Cinematic Gallery (3-col masonry) ----- */
.section-gallery { background: var(--c-emerald-deep); }
.section-gallery .section-display-title { color: #fff; }
.section-gallery .section-display-title em { color: var(--c-gold-soft); }
.section-gallery .section-display-lede { color: rgba(255,255,255,0.7); }
.section-gallery .section-eyebrow { color: var(--c-gold-soft); }
.section-gallery .section-eyebrow::before,
.section-gallery .section-eyebrow::after { background: var(--c-gold); }

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 540px) { .gallery-masonry { columns: 1; } }
.gallery-item {
  position: relative;
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--c-emerald-deep);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.92;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 1; }
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(20,37,25,0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,37,25,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }

/* ----- WhatsApp Banner ----- */
.section-whatsapp-banner {
  background: var(--c-emerald);
  padding: 4rem 0;
  color: #fff;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(201,163,94,0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(201,163,94,0.1) 0%, transparent 50%);
}
.whatsapp-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.whatsapp-banner-text {
  flex: 1;
  min-width: 280px;
}
.whatsapp-banner-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.whatsapp-banner-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}
.whatsapp-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}
.whatsapp-banner-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

/* ----- Coverage Map ----- */
.section-coverage { background: var(--c-ivory); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-text .section-eyebrow { justify-content: flex-start; }
.coverage-zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 2rem;
}
.coverage-zone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--c-ivory-muted);
  border-left: 2px solid var(--c-gold);
  font-size: 0.92rem;
  color: var(--c-emerald-deep);
  font-weight: 500;
}
.coverage-zone svg { color: var(--c-gold-deep); flex-shrink: 0; }
.coverage-zone-out {
  background: transparent;
  border: 1px dashed rgba(26,20,16,0.2);
  border-left: 2px solid var(--c-clay);
  color: rgba(26,20,16,0.6);
  grid-column: span 2;
}
.coverage-map-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--c-emerald-deep);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201,163,94,0.15) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(201,163,94,0.1) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 12px);
}
.coverage-map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201,163,94,0.2), 0 0 0 12px rgba(201,163,94,0.1);
  transform: translate(-50%, -50%);
  animation: pulsePin 2.5s ease-in-out infinite;
}
.coverage-map-pin-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,37,25,0.9);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
@keyframes pulsePin {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,163,94,0.2), 0 0 0 12px rgba(201,163,94,0.1); }
  50%      { box-shadow: 0 0 0 10px rgba(201,163,94,0.25), 0 0 0 20px rgba(201,163,94,0.05); }
}
.coverage-map-center {
  text-align: center;
  color: var(--c-gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  z-index: 1;
}

/* ----- Press strip refined ----- */
.section-press {
  background: var(--c-ivory);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26,20,16,0.08);
  border-bottom: 1px solid rgba(26,20,16,0.08);
}
.press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(26,20,16,0.5);
}
.press-row > span:first-child {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.4);
  font-weight: 600;
}
.press-row > span { font-size: 1.05rem; }

/* ----- Restaurant lane wrapper (below the catering fold) ----- */
.section-restaurant-lane {
  background: var(--c-ivory-muted);
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(26,20,16,0.06);
  text-align: center;
}
.restaurant-lane-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.restaurant-lane-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.75rem;
}
.restaurant-lane-sub {
  color: rgba(26,20,16,0.6);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ----- Header palette overrides for premium feel ----- */
.tattvam-front-page .topbar { background: var(--c-emerald-deep); }
.tattvam-front-page .site-header.scrolled { background: rgba(247, 241, 227, 0.97); }
.tattvam-front-page .nav-cta-whatsapp { background: var(--c-gold); color: var(--c-emerald-deep); }
.tattvam-front-page .nav-cta-whatsapp:hover { background: var(--c-gold-soft); box-shadow: 0 4px 12px rgba(201,163,94,0.3); }
.tattvam-front-page .sticky-action-bar { background: var(--c-emerald-deep); }

/* ----- Quote-request floating bubble (bottom-right desktop) ----- */
.float-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.float-bubble:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.float-bubble svg { width: 22px; height: 22px; }
@media (max-width: 768px) { .float-bubble { display: none; } }

/* Hide the v2 hero-section when v3 hero-cinema is present */
body.tattvam-front-page .hero-section { display: none; }
body.tattvam-front-page .seasonal-strip { display: none; }

/* ================================================
   ===========  V3.1 — JAIN LANDING PAGE  ==========
   ================================================ */

/* Premium body palette for all template-driven pages, not just front */
body.page-template-page-catering-jain { background: var(--c-ivory); }
body.page-template-page-catering-jain h1,
body.page-template-page-catering-jain h2,
body.page-template-page-catering-jain h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--c-emerald-deep);
}
body.page-template-page-catering-jain .topbar { background: var(--c-emerald-deep); }
body.page-template-page-catering-jain .nav-cta-whatsapp { background: var(--c-gold); color: var(--c-emerald-deep); }
body.page-template-page-catering-jain .nav-cta-whatsapp:hover { background: var(--c-gold-soft); }
body.page-template-page-catering-jain .sticky-action-bar { background: var(--c-emerald-deep); }
body.page-template-page-catering-jain .hero-section,
body.page-template-page-catering-jain .seasonal-strip { display: none; }

/* Condensed hero variant */
.hero-cinema-condensed .hero-cinema-content { padding-top: 6rem; padding-bottom: 4rem; }

/* ---- Cross-contamination Guarantee card ---- */
.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--c-emerald-deep);
  color: #fff;
  padding: 2.5rem 3rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0% 0%, rgba(201,163,94,0.15) 0%, transparent 60%);
  z-index: 0;
}
.guarantee-card > * { position: relative; z-index: 1; }
.guarantee-seal {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.guarantee-text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gold-soft);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.guarantee-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.guarantee-signoff {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-gold-soft);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .guarantee-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
}

/* ---- "The Standard We Hold" 6-card grid ---- */
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .standard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .standard-grid { grid-template-columns: 1fr; } }
.standard-card {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}
.standard-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20,37,25,0.08); border-color: var(--c-gold); }
.standard-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-gold-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.standard-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.6rem;
}
.standard-card p {
  font-size: 0.92rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ---- Operations timeline (6-step) ---- */
.ops-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .ops-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ops-timeline { grid-template-columns: 1fr; } }
.ops-step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem 1.5rem 1.75rem;
}
.ops-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.ops-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.ops-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}

/* ---- Jain sample menus (3 cards) ---- */
.jain-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .jain-menu-grid { grid-template-columns: 1fr; } }
.jain-menu-card {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.jain-menu-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20,37,25,0.08); }
.jain-menu-card-featured {
  background: var(--c-emerald-deep);
  color: #fff;
  border-color: var(--c-emerald-deep);
  transform: scale(1.02);
}
.jain-menu-card-featured h3,
.jain-menu-card-featured .jain-menu-card-eyebrow { color: var(--c-gold-soft); }
.jain-menu-card-featured .jain-menu-items li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.jain-menu-card-featured .jain-menu-price { color: #fff; border-color: rgba(255,255,255,0.15); }
.jain-menu-card-featured .jain-menu-price strong { color: var(--c-gold-soft); }
.jain-menu-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.jain-menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 1.25rem;
}
.jain-menu-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.jain-menu-items li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(26,20,16,0.75);
  border-bottom: 1px solid rgba(26,20,16,0.06);
}
.jain-menu-items li:last-child { border-bottom: none; }
.jain-menu-price {
  padding-top: 1rem;
  border-top: 1px solid rgba(26,20,16,0.1);
  font-size: 0.95rem;
  color: rgba(26,20,16,0.7);
}
.jain-menu-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
}

/* ---- FAQ accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--c-gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--c-emerald-deep);
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--c-gold-deep);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '×';
  transform: translateY(-50%) rotate(180deg);
}
.faq-question { line-height: 1.4; }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: rgba(26,20,16,0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--c-emerald-deep); }

/* Smooth open animation */
.faq-item[open] .faq-answer {
  animation: faqFadeIn 0.3s ease-out;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   ===========  V3.2 — CORPORATE PAGE  =============
   ================================================ */

body.page-template-page-catering-corporate { background: var(--c-ivory); }
body.page-template-page-catering-corporate h1,
body.page-template-page-catering-corporate h2,
body.page-template-page-catering-corporate h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--c-emerald-deep);
}
body.page-template-page-catering-corporate .topbar { background: var(--c-emerald-deep); }
body.page-template-page-catering-corporate .nav-cta-whatsapp { background: var(--c-gold); color: var(--c-emerald-deep); }
body.page-template-page-catering-corporate .nav-cta-whatsapp:hover { background: var(--c-gold-soft); }
body.page-template-page-catering-corporate .sticky-action-bar { background: var(--c-emerald-deep); }
body.page-template-page-catering-corporate .hero-section,
body.page-template-page-catering-corporate .seasonal-strip { display: none; }

/* ---- Programme type cards (4-card grid) ---- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .programme-grid { grid-template-columns: 1fr; } }
.programme-card {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.programme-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(20,37,25,0.08);
}
.programme-card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.75rem;
}
.programme-card > p {
  color: rgba(26,20,16,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.programme-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.programme-features li {
  padding: 6px 0 6px 18px;
  font-size: 0.88rem;
  color: rgba(26,20,16,0.7);
  position: relative;
}
.programme-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 1.5rem;
  top: -4px;
  line-height: 1;
}

/* ---- Case study block ---- */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3rem;
}
@media (max-width: 900px) { .case-study { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; } }
.case-study-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-emerald);
}
.case-study-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-stat {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--c-gold);
  color: var(--c-emerald-deep);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.case-study-stat strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.case-study-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}
.case-study-body .section-display-title { margin-top: 0.75rem; }
.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 600px) { .case-study-metrics { grid-template-columns: repeat(2, 1fr); } }
.case-study-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-study-metric-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-gold-soft);
  line-height: 1;
}
.case-study-metric-num small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-left: 2px;
}
.case-study-metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ================================================
   ===========  V3.3 — ABOUT PAGE  =================
   ================================================ */

body.page-template-page-about { background: var(--c-ivory); }
body.page-template-page-about h1,
body.page-template-page-about h2,
body.page-template-page-about h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--c-emerald-deep);
}
body.page-template-page-about .topbar { background: var(--c-emerald-deep); }
body.page-template-page-about .nav-cta-whatsapp { background: var(--c-gold); color: var(--c-emerald-deep); }
body.page-template-page-about .nav-cta-whatsapp:hover { background: var(--c-gold-soft); }
body.page-template-page-about .sticky-action-bar { background: var(--c-emerald-deep); }
body.page-template-page-about .hero-section,
body.page-template-page-about .seasonal-strip { display: none; }

/* ---- Story 2-col layout (with reverse variant) ---- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.story-grid-reverse { grid-template-columns: 1.1fr 0.9fr; }
.story-grid-reverse .story-visual { order: 2; }
@media (max-width: 900px) {
  .story-grid,
  .story-grid-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid-reverse .story-visual { order: -1; }
}
.story-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(20,37,25,0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
}
.story-body p {
  color: rgba(26,20,16,0.72);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.story-body p:last-of-type { margin-bottom: 0; }
.story-body strong { color: var(--c-emerald-deep); }

/* Sourcing list */
.sourcing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 4px;
}
.sourcing-list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid rgba(26,20,16,0.08);
  color: rgba(26,20,16,0.7);
  font-size: 0.92rem;
  position: relative;
}
.sourcing-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 0.6rem;
  top: 16px;
}
.sourcing-list li strong { color: var(--c-emerald-deep); margin-right: 6px; }

/* ---- Values (philosophy) grid — softer than difference-grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,20,16,0.08);
  border: 1px solid rgba(26,20,16,0.08);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
.values-cell {
  background: var(--c-ivory);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}
.values-cell:hover { background: #fffbf2; }
.values-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold-deep);
  margin-bottom: 1rem;
}
.values-cell h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.values-cell p {
  font-size: 0.92rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ---- Timeline ---- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-left: 1rem;
}
.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 2rem 0 2rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-row::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2.5rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 2px solid var(--c-emerald-deep);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gold-soft);
  line-height: 1;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.timeline-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .timeline-row { grid-template-columns: 1fr; gap: 0.5rem; padding-left: 1.5rem; }
  .timeline-row::before { top: 2.25rem; left: -6px; }
}

/* ---- Team grid ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--c-ivory);
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20,37,25,0.08); }
.team-portrait {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--c-emerald);
}
.team-body { padding: 1.5rem 1.25rem; }
.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.5rem;
}
.team-body p {
  font-size: 0.88rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.55;
  margin: 0;
}

/* ---- Press pull-quotes (2x2) ---- */
.press-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .press-quote-grid { grid-template-columns: 1fr; } }
.press-quote {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.06);
  border-left: 2px solid var(--c-gold);
  padding: 2rem;
  border-radius: 0 4px 4px 0;
}
.press-quote-source {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-gold-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.press-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-emerald-deep);
  margin: 0;
}

/* ---- Community ---- */
.community-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}
@media (max-width: 768px) { .community-list { grid-template-columns: 1fr; } }
.community-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
}
.community-item-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-gold-soft);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.community-item p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Visit block ---- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.visit-body .section-display-title { margin-top: 0.75rem; }
.visit-info {
  margin-top: 1.5rem;
  display: grid;
  gap: 12px;
}
.visit-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,20,16,0.08);
}
.visit-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.45);
  font-weight: 600;
  padding-top: 2px;
}
.visit-info-value {
  color: var(--c-emerald-deep);
  font-size: 0.95rem;
}
.visit-visual {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.visit-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================
   ===========  V3.4 — REMAINING PAGE COMPONENTS  ==
   ================================================ */

/* All non-front templates get premium body styles */
body[class*="page-template-page-"] { background: var(--c-ivory); }
body[class*="page-template-page-"] .topbar { background: var(--c-emerald-deep); }
body[class*="page-template-page-"] .nav-cta-whatsapp { background: var(--c-gold); color: var(--c-emerald-deep); }
body[class*="page-template-page-"] .nav-cta-whatsapp:hover { background: var(--c-gold-soft); }
body[class*="page-template-page-"] .sticky-action-bar { background: var(--c-emerald-deep); }
body[class*="page-template-page-"] .hero-section,
body[class*="page-template-page-"] .seasonal-strip { display: none; }
body[class*="page-template-page-"] h1,
body[class*="page-template-page-"] h2,
body[class*="page-template-page-"] h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--c-emerald-deep);
}

/* ---- Service Hub grid (Catering parent page) ---- */
.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .service-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-hub-grid { grid-template-columns: 1fr; } }
.service-hub-card {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.service-hub-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,37,25,0.1); border-color: var(--c-gold); }
.service-hub-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--c-emerald);
}
.service-hub-body { padding: 1.75rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-hub-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.6rem;
}
.service-hub-body p {
  font-size: 0.92rem;
  color: rgba(26,20,16,0.65);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.service-hub-cta {
  display: inline-block;
  color: var(--c-emerald-deep);
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ---- Contact method cards ---- */
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .contact-method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .contact-method-grid { grid-template-columns: 1fr; } }
.contact-method-card {
  background: #fff;
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  color: inherit;
  display: block;
}
.contact-method-card:hover { transform: translateY(-4px); border-color: var(--c-gold); box-shadow: 0 8px 24px rgba(20,37,25,0.08); }
.contact-method-card-whatsapp { background: rgba(37,211,102,0.04); border-color: rgba(37,211,102,0.2); }
.contact-method-card-whatsapp:hover { border-color: #25d366; }
.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-deep);
  margin: 0 auto 1rem;
}
.contact-method-card-whatsapp .contact-method-icon { background: #25d366; color: #fff; border-color: #25d366; }
.contact-method-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.4rem;
}
.contact-method-card p { font-size: 0.88rem; color: rgba(26,20,16,0.65); margin-bottom: 0.75rem; }
.contact-method-cta {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-gold-deep);
  font-weight: 600;
}

/* ---- Contact map embed ---- */
.contact-map-embed {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  background: var(--c-emerald);
}
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(255,255,255,0.96);
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 320px;
  box-shadow: 0 12px 32px rgba(20,37,25,0.15);
}
.contact-map-overlay-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
  margin-bottom: 0.4rem;
}
.contact-map-overlay-addr {
  font-size: 0.88rem;
  color: rgba(26,20,16,0.65);
}
@media (max-width: 768px) {
  .contact-map-embed { height: 360px; }
  .contact-map-overlay { top: 1rem; left: 1rem; right: 1rem; max-width: none; padding: 1rem; }
}

/* ================================================
   ===========  V4.1 — OFFICIAL BRAND OVERRIDES  ==
   ================================================
   The legacy v3 aliases (gold → red, emerald → crimson) need a handful of
   targeted contrast fixes so we never end up with red-text-on-red or
   crimson-text-on-crimson. Everything below is a brand-faithful override. */

/* Hero eyebrow text — pale olive reads better than red-soft on dark crimson */
.hero-cinema-eyebrow {
  color: #d4d99a;                                /* pale olive */
  border-color: rgba(212,217,154,0.4);
}
.hero-cinema-eyebrow::before,
.hero-cinema-eyebrow::after { background: var(--c-olive-soft); }
.hero-cinema-trust-item strong { color: #d4d99a; }
.hero-cinema-title em { color: #d4d99a; font-weight: 500; }

/* Scroll indicator on hero — softer */
.hero-cinema-scroll { color: rgba(255,255,255,0.55); }

/* Primary CTA — red background, WHITE text (not dark crimson on red) */
.btn-gold {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.btn-gold:hover {
  background: var(--c-red-deep);
  border-color: var(--c-red-deep);
  box-shadow: 0 10px 30px rgba(216,29,46,0.3);
}

/* Section eyebrow on light surfaces — olive (was gold-deep) is on-brand */
.section-eyebrow { color: var(--c-olive-deep); }
.section-eyebrow::before,
.section-eyebrow::after { background: var(--c-olive); }
.section-display-title em { color: var(--c-olive-deep); }
.section-head-center .section-eyebrow { color: var(--c-olive-deep); }

/* Section-on-dark eyebrows: pale olive instead of red */
.section-packages .section-display-title em,
.section-packages .section-eyebrow { color: #d4d99a; }
.section-packages .section-eyebrow::before,
.section-packages .section-eyebrow::after { background: var(--c-olive-soft); }
.section-gallery .section-display-title em,
.section-gallery .section-eyebrow { color: #d4d99a; }
.section-gallery .section-eyebrow::before,
.section-gallery .section-eyebrow::after { background: var(--c-olive-soft); }
.tiffin-section .section-label { color: #d4d99a; }

/* Service-hub-eyebrow uses olive — already redirected, ok */
.service-hub-eyebrow { color: var(--c-olive-deep); }

/* Package featured tile — red bg with crimson text is hard. Use ivory body text. */
.package-card-featured {
  background: linear-gradient(160deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: #fff;
}
.package-card-featured h3,
.package-card-featured .package-name,
.package-card-featured .package-price,
.package-card-featured .package-tagline,
.package-card-featured .package-feature,
.package-card-featured .package-meta,
.package-card-featured .package-meta-label { color: #fff !important; }
.package-card-featured .package-meta-label { color: rgba(255,255,255,0.7) !important; }
.package-card-featured .package-feature { border-color: rgba(255,255,255,0.1); }
.package-card-featured .package-feature::before { color: #ffd980 !important; }
.package-card-featured .package-divider { background: rgba(255,255,255,0.4); }
.package-card-featured .btn-gold {
  background: #fff;
  color: var(--c-red);
  border-color: #fff;
}
.package-card-featured .btn-gold:hover { background: var(--c-ivory-muted); }

/* Package ribbon contrast on the dark crimson section */
.package-ribbon {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}

/* Featured tile ribbon — needs to invert because the tile itself is red */
.package-card-featured .package-ribbon {
  background: var(--c-crimson-deep);
  color: #fff;
  border-color: var(--c-crimson-deep);
}

/* Thali pricing featured (legacy v2 component): crimson is fine */
.thali-price-card-featured .thali-price-label { color: #d4d99a; }

/* Tier featured uses --c-emerald (now crimson) — already ok */
.tier-card-featured .tier-features li::before { color: #ffd980 !important; }

/* Mithai card body bg — keep cream, ok */

/* Trust card avatar: was emerald bg + gold-soft text → now crimson bg + pale-olive text */
.trust-card-avatar {
  background: var(--c-crimson-deep);
  color: #d4d99a;
}

/* Community item stat: pale olive instead of red-soft on dark crimson */
.community-item-stat { color: #d4d99a; }

/* WhatsApp CTAs everywhere — these were styled `background:gold; color:emerald-deep`
   which became `background:red; color:crimson` (poor contrast). Force WHITE on red. */
.tattvam-front-page .nav-cta-whatsapp,
body.page-template-page-catering-jain .nav-cta-whatsapp,
body.page-template-page-catering-corporate .nav-cta-whatsapp,
body.page-template-page-about .nav-cta-whatsapp,
body[class*="page-template-page-"] .nav-cta-whatsapp {
  background: var(--c-red);
  color: #fff;
}

/* Mobile drawer Quote button: red bg, white text */
.mobile-cta[style*="--c-gold"] {
  background: var(--c-red) !important;
  color: #fff !important;
}

/* Topbar rating star stays gold-yellow (universal star colour) */
.topbar-rating svg { fill: var(--c-star); }

/* Stars in hero / trust strips → use gold-yellow */
.hero-cinema-trust .hero-cinema-trust-item svg[fill="#C9A35E"],
.hero-cinema-trust .hero-cinema-trust-item svg[fill="#c8a84e"] { fill: var(--c-star); }
.reviews-summary-stars svg,
.hero-trust-stars svg { fill: var(--c-star); }

/* Visit-info hover-borders that were gold */
.visit-info-value a {
  color: var(--c-crimson-deep);
  border-bottom: 1px solid var(--c-olive);
}
.visit-info-value a:hover { color: var(--c-red); border-color: var(--c-red); }

/* Standard cards hover gold border → olive border (more refined) */
.standard-card:hover { border-color: var(--c-olive); }
.faq-item[open] { border-color: var(--c-olive); }
.service-hub-card:hover { border-color: var(--c-olive); }
.contact-method-card:hover { border-color: var(--c-olive); }
.contact-method-card:hover .contact-method-icon { color: var(--c-red); border-color: var(--c-red); }

/* Contact method icon — olive (not red) when idle */
.contact-method-icon {
  color: var(--c-olive-deep);
  border-color: var(--c-olive);
}

/* Difference icon also olive */
.difference-icon {
  color: var(--c-olive-deep);
  border-color: var(--c-olive);
}

/* Guarantee seal — pale olive on crimson */
.guarantee-card { background: var(--c-crimson-deep); }
.guarantee-seal { color: #d4d99a; border-color: rgba(212,217,154,0.4); }
.guarantee-text h2 { color: #d4d99a; }
.guarantee-signoff { color: #d4d99a; }

/* Press pull-quote source colour */
.press-quote-source { color: var(--c-olive-deep); }
.press-quote { border-left-color: var(--c-olive); }

/* Jain menu featured card eyebrow / price strong → pale olive */
.jain-menu-card-featured .jain-menu-card-eyebrow,
.jain-menu-card-featured .jain-menu-price strong { color: #d4d99a; }

/* Timeline pin colour */
.timeline-row::before { background: var(--c-red); }
.timeline-year { color: #d4d99a; }

/* Ops step number — red on crimson is too monochromatic */
.ops-step-number {
  background: var(--c-olive);
  color: var(--c-crimson-deep);
}

/* Standard-card 6-cell num + values-num → olive */
.standard-num { color: var(--c-olive-deep); }
.values-num { color: var(--c-olive-deep); }
.jain-menu-card-eyebrow { color: var(--c-olive-deep); }
.experience-meta-eyebrow { color: #d4d99a; }
.experience-meta-cta { color: #d4d99a; border-bottom-color: var(--c-olive-soft); }

/* Tiffin features arrow */
.tiffin-features li::before { color: #d4d99a; }

/* Tier features check → olive on light, pale-olive on dark */
.tier-card-featured .tier-features li::before { color: #ffd980 !important; }
.tier-features li::before { color: var(--c-olive); }

/* Mithai card link arrow — red on light cream */
.link-arrow { color: var(--c-red); }
.link-arrow:hover { color: var(--c-crimson-deep); }

/* Section gallery captions */
.gallery-item-caption { background: linear-gradient(0deg, rgba(61,7,14,0.88), transparent); }

/* Sticky bar already uses --c-emerald-deep (=crimson). Ok. */

/* Brand-correct headline italic accent on light surfaces: use olive instead of red */
.section-display-title em { color: var(--c-olive-deep); }

/* Front-page hero buttons mobile stack */
.btn-whatsapp { background: #25d366; color: #fff; }

/* Devanagari script "तत्त्वम्" eyebrow — Nirmala UI font */
.section-eyebrow:lang(sa),
.devanagari { font-family: var(--font-script); }

/* ================================================
   ===========  V4.2 — HERO + HEADER FIXES  ========
   ================================================
   Bug reports from production screenshot:
   1. Hero title rendered in dark crimson on a light-roti food image → illegible
   2. Header logo + tagline overlapping nav items
   3. Hero overlay too thin — food image competes with text
   ================================================ */

/* --- HERO TITLE: force IVORY (cream) regardless of front-page body rule --- */
.hero-cinema-title,
body.tattvam-front-page .hero-cinema-title,
body[class*="page-template-page-"] .hero-cinema-title {
  color: var(--c-ivory) !important;
  text-shadow:
    0 2px 28px rgba(20, 5, 8, 0.65),
    0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-cinema-title em {
  color: #d9dc7e !important;          /* readable pale olive */
  font-style: italic;
  font-weight: 500;
}
.hero-cinema-sub,
body.tattvam-front-page .hero-cinema-sub {
  color: rgba(250, 248, 240, 0.92) !important;
  text-shadow: 0 1px 12px rgba(20, 5, 8, 0.5);
}

/* --- HERO OVERLAY: significantly darker so food is texture, not subject --- */
.hero-cinema-overlay {
  background:
    linear-gradient(180deg, rgba(37,7,14,0.65) 0%, rgba(37,7,14,0.55) 35%, rgba(37,7,14,0.75) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(37,7,14,0.15) 0%, rgba(37,7,14,0.55) 100%) !important;
}

/* Plus a dedicated top-fade so the header always reads light against the image */
.hero-cinema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(37,7,14,0.85) 0%, rgba(37,7,14,0.35) 60%, rgba(37,7,14,0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* --- HEADER LOGO + TAGLINE: the logo image already brands the corner.
   Hide the text block on desktop (≥1024px) to prevent collision with nav.
   Show only on tablet (640–1023px) where the desktop nav is hidden behind
   the hamburger menu and there's room. --- */
.nav-logo-text {
  display: none;                  /* hidden on mobile (logo only) */
  max-width: 200px;
  line-height: 1;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .nav-logo-text {
    display: block;               /* visible only on tablet */
  }
}
.nav-logo-text h1 {
  font-size: 1rem !important;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 2px;
}
.nav-logo-text span {
  font-size: 0.62rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}

/* --- NAV TEXT on hero must read LIGHT (was scrolled-state dark in some flows) --- */
body.tattvam-front-page .site-header:not(.scrolled) .nav-menu a {
  color: rgba(250, 248, 240, 0.95);
  text-shadow: 0 1px 8px rgba(20, 5, 8, 0.5);
}
body.tattvam-front-page .site-header:not(.scrolled) .nav-logo-text h1,
body.tattvam-front-page .site-header:not(.scrolled) .nav-logo-text span {
  color: var(--c-ivory);
  text-shadow: 0 1px 8px rgba(20, 5, 8, 0.5);
}
body.tattvam-front-page .site-header:not(.scrolled) .mobile-menu-btn { color: var(--c-ivory); }

/* Nav-CTAs in hero state — keep red bg but ensure visible border */
body.tattvam-front-page .site-header:not(.scrolled) .nav-cta-secondary {
  background: rgba(250, 248, 240, 0.15);
  border-color: rgba(250, 248, 240, 0.4);
  color: var(--c-ivory);
}

/* Logo image — keep clean ring on hero state */
body.tattvam-front-page .site-header:not(.scrolled) .nav-logo img {
  border-color: rgba(250, 248, 240, 0.85);
  background: rgba(250, 248, 240, 0.97);
}

/* --- Make sure the hero content vertically centres + reserves header space --- */
.hero-cinema { padding-top: 0; }
.hero-cinema-content { padding-top: 7rem; padding-bottom: 5rem; }
@media (max-width: 768px) {
  .hero-cinema-content { padding-top: 6rem; padding-bottom: 4rem; }
  .hero-cinema-title { font-size: clamp(2rem, 7vw, 3.2rem); }
}

/* --- TRUST STRIP under hero CTAs: lighter and more legible --- */
.hero-cinema-trust {
  border-top-color: rgba(250, 248, 240, 0.18);
  color: rgba(250, 248, 240, 0.82);
}
.hero-cinema-trust-item strong { color: #d9dc7e; }

/* --- BLOG (archive + single) — premium content styles --- */
.blog-hero {
  background: var(--c-crimson-deep);
  color: var(--c-ivory);
  padding: 6rem 0 4rem;
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--c-ivory);
  margin-bottom: 0.5rem;
}
.blog-hero p {
  color: rgba(250, 248, 240, 0.75);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 4rem 0;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  border: 1px solid rgba(37, 34, 4, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-olive);
  box-shadow: 0 10px 28px rgba(37, 7, 14, 0.1);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--c-crimson);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-olive-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-crimson-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  color: rgba(37, 34, 4, 0.7);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: rgba(37, 34, 4, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-readtime::before { content: '·'; margin-right: 8px; }

/* Single blog post */
.blog-single {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.blog-single-meta {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-olive-deep);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.blog-single h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-crimson-deep);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-single-excerpt {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(37, 34, 4, 0.7);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.55;
}
.blog-single-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 3rem;
}
.blog-single-content {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(37, 34, 4, 0.85);
}
.blog-single-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-crimson-deep);
  margin: 3rem 0 1rem;
  line-height: 1.3;
}
.blog-single-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--c-crimson-deep);
  margin: 2rem 0 0.75rem;
}
.blog-single-content p { margin-bottom: 1.25rem; }
.blog-single-content ul,
.blog-single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog-single-content li { margin-bottom: 0.5rem; padding-left: 0.5rem; }
.blog-single-content strong { color: var(--c-crimson-deep); }
.blog-single-content blockquote {
  margin: 2rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--c-olive);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-crimson-deep);
}
.blog-single-cta {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--c-ivory-muted);
  border-radius: 6px;
  text-align: center;
}
.blog-single-cta h3 {
  font-family: var(--font-heading);
  color: var(--c-crimson-deep);
  margin-bottom: 0.5rem;
}
.blog-single-cta p { margin-bottom: 1.25rem; color: rgba(37, 34, 4, 0.7); }
.blog-single-related {
  background: var(--c-ivory-muted);
  padding: 4rem 0;
}
.blog-single-related h3 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--c-crimson-deep);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}


