/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --saffron: #d97706;
  --turmeric: #f59e0b;
  --chilli: #b91c1c;
  --chilli-light: #ef4444;
  --cardamom: #166534;
  --leaf: #16a34a;
  --wheat: #92400e;
  --cumin: #78350f;
  --cream: #fefce8;
  --parchment: #fef3c7;
  --off-white: #fffbf0;

  --bg: #fffbf0;
  --bg-alt: #fef3c7;
  --bg-deep: #1c0a00;
  --surface: #ffffff;
  --surface-alt: #fefce8;
  --text-primary: #1c0a00;
  --text-secondary: #4a2800;
  --text-muted: #78350f;
  --border: rgba(180, 100, 20, 0.15);
  --border-strong: rgba(180, 100, 20, 0.3);
  --accent: #d97706;
  --accent-glow: rgba(217, 119, 6, 0.25);
  --shadow-sm: 0 2px 8px rgba(92, 40, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(92, 40, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(92, 40, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
  --bg: #100800;
  --bg-alt: #1c0e02;
  --bg-deep: #0a0400;
  --surface: #1e1005;
  --surface-alt: #271508;
  --text-primary: #fef3c7;
  --text-secondary: #fde68a;
  --text-muted: #d97706;
  --border: rgba(217, 119, 6, 0.2);
  --border-strong: rgba(217, 119, 6, 0.35);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition:
    background var(--transition),
    color var(--transition);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.serif {
  font-family: "Cormorant Garamond", serif;
}
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   PAGES SYSTEM
   ============================================================ */
.page {
  display: none;
  min-height: 100vh;
}
.page.active {
  display: block;
  animation: pageIn 0.5s ease both;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255, 251, 240, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(16, 8, 0, 0.88);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-logo-icon {
  width: 185px;
  height: 70px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: var(--border-strong);
  position: relative;
  transition: background var(--transition);
  border: 1px solid var(--border);
}
.theme-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform var(--transition);
}
[data-theme="dark"] .theme-toggle::after {
  transform: translateX(18px);
}
.btn-nav {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.825rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--chilli);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--surface);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 6rem;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open {
  display: flex;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dropdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.dropdown-group a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 400;
}

.dropdown-group a:hover {
  color: var(--accent);
  background: var(--bg-alt);
  padding-left: 0.85rem;
}

.dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  margin-top: 10px;
}

.dropdown-view-all:hover svg {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
/* ============================================================
   HERO BANNERS
   ============================================================ */
.hero-section {
  padding-top: 72px;
}
.hero-banner {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-banner.banner-2 {
  min-height: 75svh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-banner:hover .hero-bg {
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 10, 0, 0.82) 0%,
    rgba(28, 10, 0, 0.45) 60%,
    rgba(28, 10, 0, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  max-width: 780px;
}
.hero-content .label {
  color: #fde68a;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-content h1 span {
  color: var(--turmeric);
}
.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 251, 240, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all var(--transition);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--chilli);
  border-color: var(--chilli);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.banner-badge {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  background: rgba(255, 251, 240, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 251, 240, 0.2);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 2.5rem;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.badge-stat {
  text-align: center;
}
.badge-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fde68a;
}
.badge-stat .lbl {
  font-size: 0.7rem;
  color: rgba(255, 251, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Add these to your CSS — your existing .hero-banner styles stay as-is */

.hero-swiper {
  width: 100%;
}

.hero-swiper .swiper-slide {
  height: auto;
}

/* Pagination dots */
.hero-pagination {
  bottom: 2rem !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 251, 240, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: #fde68a;
  width: 28px;
  border-radius: 5px;
}

/* Prev / Next arrows */
.hero-btn-prev,
.hero-btn-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 251, 240, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 251, 240, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: rgba(255, 251, 240, 0.25);
}
.hero-btn-prev::after,
.hero-btn-next::after {
  font-size: 1rem;
  font-weight: 700;
}

/* Slide-in animation for content on active slide */
.swiper-slide-active .hero-content .label,
.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-actions {
  animation: slideUp 0.7s ease forwards;
}
.swiper-slide-active .hero-content h1 {
  animation-delay: 0.1s;
}
.swiper-slide-active .hero-content p {
  animation-delay: 0.2s;
}
.swiper-slide-active .hero-actions {
  animation-delay: 0.3s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   METRICS RIBBON
   ============================================================ */
.metrics-ribbon {
  background: linear-gradient(
    135deg,
    var(--cumin),
    var(--wheat),
    var(--chilli)
  );
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.metrics-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.metrics-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.metric-card {
  text-align: center;
}
.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.metric-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fde68a;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metric-label {
  color: rgba(255, 251, 240, 0.8);
  font-size: 0.875rem;
}
.metric-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  display: none;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0 1rem;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
.divider-spice {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.divider-spice::before,
.divider-spice::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
}
.divider-spice svg {
  fill: var(--accent);
  width: 18px;
  height: 18px;
}

/* ============================================================
   ABOUT SECTION (HOMEPAGE)
   ============================================================ */
.about-home {
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.pillar {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--saffron), var(--chilli));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.pillar-text strong {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.pillar-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.08);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 10, 0, 0.75) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}
.product-overlay-btn {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card-body {
  padding: 1.25rem;
}
.product-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.product-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.product-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.product-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.product-tag {
  padding: 0.2rem 0.6rem;
  background: var(--bg-alt);
  border-radius: 20px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--bg-alt);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--accent),
    var(--chilli),
    var(--accent)
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1rem 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.process-step.revealed {
  opacity: 1;
  transform: translateY(0);
}
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 3px var(--accent);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--chilli);
  box-shadow: 0 0 0 3px var(--chilli);
}
.process-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.process-step h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.why-visual {
  position: relative;
  background: linear-gradient(135deg, var(--cumin), var(--chilli));
  border-radius: var(--radius-lg);
  padding: 3rem;
  overflow: hidden;
}
.why-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.why-visual-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}
.why-visual h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fde68a;
}
.why-visual p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.why-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.why-stat .n {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fde68a;
}
.why-stat .l {
  font-size: 0.7rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-feature:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.15),
    rgba(185, 28, 28, 0.1)
  );
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.why-feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background: var(--bg-deep);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.map-section .section-header h2,
.map-section .section-header p,
.map-section .label {
  color: #fde68a;
}
.map-section .section-header p {
  color: rgba(253, 230, 138, 0.7);
}
.map-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 251, 240, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 119, 6, 0.2);
  /* padding: 1.5rem; */
  overflow: hidden;
}
.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.map-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--turmeric);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.map-pulse::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid var(--turmeric);
  border-radius: 50%;
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(253, 230, 138, 0.7);
}
.legend-dot {
  width: 8px;
  height: 8px;
  background: var(--turmeric);
  border-radius: 50%;
}

/* ============================================================
   QUOTATION BANNER
   ============================================================ */
.quote-banner {
  background: linear-gradient(
    135deg,
    var(--cumin) 0%,
    var(--wheat) 40%,
    var(--chilli) 100%
  );
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 3rem;
  font-family: "Playfair Display", serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}
.quote-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-banner blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-banner cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fde68a;
  font-style: normal;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-alt);
  overflow: hidden;
}
.testimonials-rail {
  display: flex;
  gap: 1.5rem;
  animation: railScroll 40s linear infinite;
  width: max-content;
}
.testimonials-rail:hover {
  animation-play-state: paused;
}
.testimonials-outer {
  overflow: hidden;
  padding: 1rem 0;
}
@keyframes railScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testi-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testi-star {
  color: var(--turmeric);
  font-size: 0.9rem;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--chilli));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.testi-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--accent);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.faq-q:hover {
  color: var(--accent);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   ENQUIRY SECTION
   ============================================================ */
.enquiry-section {
  background: var(--bg-deep);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.enquiry-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.enquiry-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fde68a;
  margin: 0.5rem 0 1.25rem;
}
.enquiry-inner p {
  color: rgba(253, 230, 138, 0.7);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.enquiry-form-short {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}
.input-field {
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 251, 240, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #fde68a;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color var(--transition);
  outline: none;
}
.input-field::placeholder {
  color: rgba(253, 230, 138, 0.4);
}
.input-field:focus {
  border-color: var(--accent);
}
.btn-contact-full {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  border: 2px solid var(--accent);
}
.btn-contact-full:hover {
  background: var(--chilli);
  border-color: var(--chilli);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0400;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}
.footer-brand .nav-logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(253, 230, 138, 0.6);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fde68a;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(253, 230, 138, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: #fde68a;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(253, 230, 138, 0.4);
}
.gst-tag {
  font-size: 0.7rem;
  color: rgba(253, 230, 138, 0.3);
  font-family: monospace;
}

/* ============================================================
   DEDICATED PAGES
   ============================================================ */

/* ABOUT PAGE */
.page-hero {
  min-height: 55svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
  padding-top: 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 10, 0, 0.9) 0%,
    rgba(28, 10, 0, 0.4) 70%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  color: rgba(255, 251, 240, 0.75);
  max-width: 500px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: rgba(253, 230, 138, 0.6);
}
.breadcrumb a {
  color: var(--accent);
}
.breadcrumb span {
  color: rgba(253, 230, 138, 0.3);
}

.about-page-mission {
  background: var(--bg-alt);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.mission-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0 1rem;
}
.mission-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mission-vals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mission-val {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.mission-val-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.mission-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.team-section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  padding-bottom: 1.5rem;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--saffron), var(--chilli));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}
.team-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 1.25rem;
}

/* PRODUCTS PAGE */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.prod-detail-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.prod-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.prod-detail-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.prod-detail-body {
  padding: 1.5rem;
}
.prod-detail-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.prod-detail-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.prod-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}
.spec-row span:first-child {
  color: var(--text-muted);
}
.spec-row span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}
.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-enquire:hover {
  background: var(--chilli);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0 1.25rem;
}
.contact-info p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.15),
    rgba(185, 28, 28, 0.1)
  );
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.contact-detail-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent);
}
.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--chilli));
  color: #fff;
  font-weight: 700;
  font-size: 0.925rem;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* BLOG PAGE */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.blog-cat {
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.blog-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.blog-read:hover {
  gap: 0.7rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 2rem;
}
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    display: none;
  }
  .process-track::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-right .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .banner-badge {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .enquiry-form-short {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .metrics-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ILLUSTRATED DECORATIVE ELEMENTS
   ============================================================ */
.wheat-decor {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  font-size: 8rem;
  line-height: 1;
}
.spice-illustration {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Active nav link */
.nav-links a.active-page {
  color: var(--accent);
}
.nav-links a.active-page::after {
  transform: scaleX(1);
}
