/* ============================================================
   NOOR ALHAWA FOODSTUFF TRADING L.L.C. — BRAND v2
   Style Sheet | Forest-Green / Wheat-Gold / Ivory palette
   Fonts: Sora (headings) + Inter (body)
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   :ROOT — DESIGN TOKENS
   ============================================================ */
:root {
  /* Core colours */
  --color-forest:       #453d36;   /* primary dark — nav, footer, dark sections */
  --color-wheat:        #C9A66B;   /* warm gold accent — icons, borders, dividers */
  --color-ivory:        #F7F5EF;   /* primary light background */
  --color-spice:        #B5651D;   /* spice-orange — keyword highlights only */
  --color-forest-deep:  #fff5ea;   /* darker footer background */

  /* Semantic aliases */
  --bg-primary:   var(--color-ivory);
  --bg-dark:      var(--color-forest);
  --bg-darker:    var(--color-forest-deep);
  --accent:       var(--color-wheat);
  --highlight:    var(--color-spice);

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.65s ease;

  /* Radii */
  --radius-sm:  2px;
  --radius-md:  3px;

  /* Shadows */
  --shadow-card:  0 16px 48px rgba(38, 54, 42, 0.10);
  --shadow-hero:  0 24px 64px rgba(38, 54, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-forest);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-forest);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader svg .preloader-ring {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: ring-draw 0.9s ease 0.2s forwards;
}

.preloader-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(201, 166, 107, 0.8);
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes ring-draw {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff5ead8;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 166, 107, 0.18);
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: #fff5ead8;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-wheat);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 166, 107, 0.5);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-wheat);
  margin: 5px 0;
  transition: all 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #453d36;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-wheat);
  border: 1px solid rgba(201, 166, 107, 0.7);
  padding: 9px 20px;
  text-decoration: none;
  transition: all 0.25s;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--color-wheat);
  color: var(--color-forest);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(16 16 16 / 82%);;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-ivory);
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 166, 107, 0.9);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-ivory);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(247, 245, 239, 0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(201, 166, 107, 0.6);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
}

.scroll-cue-text {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 166, 107, 0.5);
}

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.page-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  padding-top: 72px; /* account for fixed navbar */
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 54, 42, 0.82);
}

.page-header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--color-ivory);
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(201, 166, 107, 0.65);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(201, 166, 107, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-wheat);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-ivory);
  line-height: 1.2;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

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

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

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--color-wheat);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--color-ivory);
}

.section-title.dark {
  color: var(--color-forest);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.section-subtitle.light {
  color: rgba(247, 245, 239, 0.7);
}

.section-subtitle.dark {
  color: rgba(38, 54, 42, 0.7);
}

/* Keyword highlight — spice-orange, never italic */
.keyword {
  color: var(--color-spice);
  font-style: normal;
  font-weight: inherit;
}

/* Wheat ornamental divider */
.wheat-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 24px;
}

.wheat-divider-line {
  height: 1px;
  flex: 1;
  background: rgba(201, 166, 107, 0.3);
  max-width: 80px;
  transform-origin: left;
  animation: drawLine 0.8s ease forwards;
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.wheat-divider-dot {
  width: 5px;
  height: 5px;
  background: var(--color-wheat);
  opacity: 0.6;
  transform: rotate(45deg);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-forest);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--color-wheat);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-wheat);
  font-weight: 700;
  display: inline;
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--color-wheat);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 239, 0.55);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--color-ivory);
  padding: 96px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-hero);
}

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

.about-image:hover img {
  transform: scale(1.04);
}

.about-text {
  padding: 16px 0;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(38, 54, 42, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 400;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-forest);
  text-decoration: none;
  border-bottom: 1px solid var(--color-wheat);
  padding-bottom: 2px;
  margin-top: 24px;
  transition: color var(--transition-fast);
}

.about-link:hover {
  color: var(--color-wheat);
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  text-decoration: none;
  display: block;
}

.category-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 28, 28, 0.932) 40%, rgba(69, 61, 54, 0.15) 100%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: var(--color-ivory);
}

.category-card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(201, 166, 107, 0.7);
  margin-bottom: 8px;
}

.category-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-ivory);
}

.category-card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(247, 245, 239, 0.7);
  line-height: 1.55;
  margin-bottom: 16px;
}

.category-card-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-wheat);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 166, 107, 0.18);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(201, 166, 107, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--color-wheat);
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-ivory);
  margin-bottom: 10px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(247, 245, 239, 0.6);
  line-height: 1.72;
  font-weight: 400;
}

/* ============================================================
   MAP / GLOBAL REACH SECTION
   ============================================================ */
.map-section {
  background: var(--color-forest);
  padding: 96px 0;
}

.map-svg-wrapper {
  max-width: 900px;
  margin: 48px auto 0;
}

.map-svg-wrapper svg {
  width: 100%;
  height: auto;
}

.world-land {
  fill: rgba(201, 166, 107, 0.18);
  stroke: rgba(201, 166, 107, 0.28);
  stroke-width: 0.6;
}

.pulse-region {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.65; }
}

.dubai-ring-a,
.dubai-ring-b {
  transform-box: fill-box;
  transform-origin: center;
  fill: none;
  stroke: var(--color-wheat);
  stroke-width: 0.9;
}

.dubai-ring-a {
  animation: dubai-ring 2.4s ease-out infinite;
}

.dubai-ring-b {
  animation: dubai-ring 2.4s ease-out 1.2s infinite;
}

@keyframes dubai-ring {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(3.8); opacity: 0; }
}

.dubai-dot {
  fill: var(--color-wheat);
}

.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.region-chip {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(201, 166, 107, 0.5);
  border: 1px solid rgba(201, 166, 107, 0.2);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
}

.region-chip.active {
  border-color: var(--color-wheat);
  color: var(--color-wheat);
}

/* ============================================================
   PRODUCTS PAGE — FILTER BAR
   ============================================================ */
.product-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border: 1px solid rgba(38, 54, 42, 0.18);
  background: transparent;
  color: var(--color-forest);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

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

/* ============================================================
   PRODUCTS PAGE — CATEGORY SECTIONS
   ============================================================ */
.category-section {
  margin-bottom: 72px;
}

.category-section.hidden {
  display: none;
}

.category-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 166, 107, 0.25);
}

.category-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-forest);
}

.category-section-count {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(38, 54, 42, 0.4);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  border: 1px solid rgba(38, 54, 42, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.product-card-body {
  padding: 20px;
}

.placeholder-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-spice);
  background: rgba(181, 101, 29, 0.08);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-forest);
  margin-bottom: 6px;
}

.product-card-origin {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(38, 54, 42, 0.55);
  margin-bottom: 8px;
  font-weight: 400;
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(38, 54, 42, 0.65);
  line-height: 1.62;
  margin-bottom: 14px;
  font-weight: 400;
}

.product-view-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-wheat);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color var(--transition-fast);
}

.product-view-btn:hover {
  color: var(--color-spice);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  max-width: 580px;
  width: 100%;
  padding: 40px;
  position: relative;
  border-radius: var(--radius-md);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(38, 54, 42, 0.5);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-forest);
}

.modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-forest);
  margin-bottom: 8px;
}

.modal-origin {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(38, 54, 42, 0.55);
  margin-bottom: 20px;
}

.modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(38, 54, 42, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-spec {
  border: 1px solid rgba(38, 54, 42, 0.1);
  padding: 14px;
  border-radius: 2px;
}

.modal-spec-label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(38, 54, 42, 0.45);
  margin-bottom: 4px;
}

.modal-spec-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-forest);
}

/* ============================================================
   PROCESS PAGE — TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 166, 107, 0.3);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 56px;
  align-items: flex-start;
  position: relative;
}

.timeline-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-wheat);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-wheat);
  background: var(--color-ivory);
  position: relative;
  z-index: 1;
}

.timeline-body {
  flex: 1;
  padding-top: 10px;
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-forest);
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(38, 54, 42, 0.65);
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================================
   PROCESS PAGE — TRADE TERMS
   ============================================================ */
.trade-terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.trade-term {
  border: 1px solid rgba(201, 166, 107, 0.2);
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.trade-term:hover {
  border-color: rgba(201, 166, 107, 0.5);
}

.trade-term-code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-ivory);
  margin-bottom: 6px;
}

.trade-term-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(247, 245, 239, 0.55);
  margin-bottom: 10px;
}

.trade-term-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(247, 245, 239, 0.45);
  line-height: 1.6;
}

/* ============================================================
   PROCESS PAGE — DOWNLOAD BUTTON
   ============================================================ */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(38, 54, 42, 0.2);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-forest);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.download-btn:hover {
  border-color: var(--color-wheat);
  color: var(--color-wheat);
}

.downloads-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   PROCESS PAGE — MOQ / PACKAGING OPTIONS
   ============================================================ */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.packaging-card {
  border: 1px solid rgba(38, 54, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: #fff;
}

.packaging-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-forest);
  margin-bottom: 12px;
}

.packaging-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(38, 54, 42, 0.65);
  line-height: 1.7;
}

/* ============================================================
   CERTIFICATIONS PAGE — CERT BADGES
   ============================================================ */
.cert-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cert-badge {
  border: 1px solid rgba(201, 166, 107, 0.3);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.cert-badge:hover {
  border-color: var(--color-wheat);
  box-shadow: 0 8px 32px rgba(38, 54, 42, 0.08);
}

.cert-badge-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-wheat);
}

.cert-badge-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-forest);
  margin-bottom: 8px;
}

.cert-badge-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(38, 54, 42, 0.6);
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================================
   CERTIFICATIONS — LAB TESTING
   ============================================================ */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lab-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(201, 166, 107, 0.15);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.lab-card:hover {
  border-color: rgba(201, 166, 107, 0.4);
}

.lab-icon {
  width: 48px;
  height: 48px;
  color: var(--color-wheat);
  margin: 0 auto 20px;
}

.lab-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ivory);
  margin-bottom: 10px;
}

.lab-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(247, 245, 239, 0.55);
  line-height: 1.7;
}

/* ============================================================
   CERTIFICATIONS — HYGIENE PRACTICES
   ============================================================ */
.hygiene-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.hygiene-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(38, 54, 42, 0.75);
  line-height: 1.65;
}

.hygiene-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-wheat);
  border-radius: 50%;
  margin-top: 7px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-forest);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(38, 54, 42, 0.18);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  background: #fff;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  color: var(--color-forest);
}

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

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  color: var(--color-wheat);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-forest);
  margin-bottom: 12px;
}

.form-success p {
  font-family: var(--font-body);
  color: rgba(38, 54, 42, 0.65);
  line-height: 1.7;
}

.contact-info-card {
  background: var(--color-forest);
  color: var(--color-ivory);
  padding: 36px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ivory);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-wheat);
  width: 18px;
  height: 18px;
}

.contact-detail-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 245, 239, 0.75);
  font-weight: 400;
}

.contact-hours {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(38, 54, 42, 0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

.response-promise {
  background: rgba(201, 166, 107, 0.08);
  border: 1px solid rgba(201, 166, 107, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
}

.response-promise p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(38, 54, 42, 0.75);
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-forest);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 166, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-ivory);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(247, 245, 239, 0.65);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-wheat);
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.28s;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background: var(--color-spice);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-wheat);
  border: 1px solid rgba(201, 166, 107, 0.7);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 13px 32px;
  cursor: pointer;
  transition: all 0.28s;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.btn-secondary:hover {
  background: rgba(201, 166, 107, 0.12);
  border-color: var(--color-wheat);
}

.btn-forest {
  background: var(--color-forest);
  color: var(--color-ivory);
  border: 1px solid var(--color-forest);
}

.btn-forest:hover {
  background: var(--color-forest-deep);
  border-color: var(--color-forest-deep);
  color: var(--color-ivory);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-forest);
  color: var(--color-forest);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-wheat);
  margin-bottom: 4px;
  display: block;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 166, 107, 0.45);
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(247, 245, 239, 0.45);
  margin-top: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-wheat);
  margin-bottom: 20px;
  display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(247, 245, 239, 0.5);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(247, 245, 239, 0.85);
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(247, 245, 239, 0.5);
  margin-bottom: 10px;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(247, 245, 239, 0.3);
  font-weight: 400;
}

/* ============================================================
   ABOUT PAGE — MISSION / VISION
   ============================================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  border: 1px solid rgba(201, 166, 107, 0.2);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.mv-card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(201, 166, 107, 0.65);
  margin-bottom: 16px;
  display: block;
}

.mv-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ivory);
  margin-bottom: 16px;
  line-height: 1.4;
}

.mv-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(247, 245, 239, 0.6);
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE — SOURCING CARDS
   ============================================================ */
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sourcing-card {
  border: 1px solid rgba(38, 54, 42, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: #fff;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.sourcing-card:hover {
  border-color: var(--color-wheat);
  box-shadow: var(--shadow-card);
}

.sourcing-card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-wheat);
  margin-bottom: 16px;
}

.sourcing-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-forest);
  margin-bottom: 8px;
}

.sourcing-card-origin {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-spice);
  margin-bottom: 12px;
}

.sourcing-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(38, 54, 42, 0.6);
  line-height: 1.65;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .categories-grid       { grid-template-columns: repeat(2, 1fr); }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .products-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: repeat(2, 1fr); }
  .trade-terms-grid      { grid-template-columns: repeat(2, 1fr); }
  .cert-badges-grid      { grid-template-columns: repeat(2, 1fr); }
  .sourcing-grid         { grid-template-columns: repeat(2, 1fr); }
  .packaging-grid        { grid-template-columns: repeat(2, 1fr); }
  .lab-grid              { grid-template-columns: repeat(2, 1fr); }
  .hygiene-list          { grid-template-columns: 1fr; }
  .mission-vision-grid   { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
  }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(38, 54, 42, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    color: rgba(247, 245, 239, 0.85);
  }

  .categories-grid   { grid-template-columns: 1fr 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .about-split       { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr 1fr; }
  .modal-specs       { grid-template-columns: 1fr; }
  .sourcing-grid     { grid-template-columns: 1fr; }
  .packaging-grid    { grid-template-columns: 1fr; }
  .lab-grid          { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .section        { padding: 72px 0; }
  .container      { padding: 0 20px; }
  .navbar-inner   { padding: 0 20px; }
  .page-header-content { padding: 0 20px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .products-grid       { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .cert-badges-grid    { grid-template-columns: 1fr; }
  .hero-cta-group      { flex-direction: column; align-items: center; }
  .footer-grid         { grid-template-columns: 1fr; }
  .categories-grid     { grid-template-columns: 1fr; }
  .trade-terms-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
