/* ============================================================
   EXOFUSION VENTURES — Organic Botanical Design System
   Aesthetic: Upscale wellness × Agricultural heritage
   Palette: Sage greens, warm linen, blush rose, muted gold
   Typography: Playfair Display (display) + Outfit (body)
   ============================================================ */

:root {
  /* Brand Core — Botanical Sage */
  --sage:           #7a9e87;
  --sage-dark:      #5a7d67;
  --sage-deep:      #3d5c4a;
  --sage-muted:     rgba(122, 158, 135, 0.12);
  --sage-light:     #c8dbd0;

  /* Warm Neutrals */
  --linen:          #fdf8f2;
  --cream:          #f7f1e8;
  --parchment:      #ede5d8;
  --warm-white:     #ffffff;

  /* Accent Colors */
  --blush:          #d4a5a0;
  --blush-muted:    rgba(212, 165, 160, 0.15);
  --gold:           #c9a84c;
  --gold-muted:     rgba(201, 168, 76, 0.12);

  /* Text */
  --text-primary:   #2c3e30;
  --text-secondary: #5a6b5e;
  --text-tertiary:  #6b8272;
  --text-inverse:   #fdf8f2;

  /* Functional */
  --border:         rgba(90, 107, 94, 0.10);
  --border-strong:  rgba(90, 107, 94, 0.18);
  --shadow-sm:      0 2px 12px rgba(44, 62, 48, 0.04);
  --shadow-md:      0 8px 32px rgba(44, 62, 48, 0.07);
  --shadow-lg:      0 20px 60px rgba(44, 62, 48, 0.10);
  --shadow-sage:    0 8px 32px rgba(122, 158, 135, 0.22);

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:         0.4s;
  --dur-slow:    0.7s;
}

/* ===== Skip Navigation (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 20px;
  background: var(--sage-deep);
  color: var(--linen);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--linen);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== Container ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Typography ===== */
em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ===== Dot Texture Utility ===== */
.texture-dots {
  background-image: radial-gradient(circle, rgba(122, 158, 135, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: all var(--dur) var(--ease);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 248, 242, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  z-index: -1;
}

.nav.scrolled::before {
  border-bottom-color: var(--sage-light);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-logo-text em {
  font-weight: 400;
  color: var(--sage-dark);
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur) var(--ease);
  position: relative;
  letter-spacing: 0.01em;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--dur) var(--ease);
}

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

.nav-link.nav-active { color: var(--sage-dark); }
.nav-link.nav-active::after { width: 100%; }

.nav-link--cta {
  background: var(--sage-deep);
  color: var(--text-inverse) !important;
  padding: 10px 26px;
  border-radius: var(--r-pill);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sage);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}

.nav-hamburger.active span:first-child { transform: rotate(45deg) translate(2.5px, 3.5px); }
.nav-hamburger.active span:last-child  { transform: rotate(-45deg) translate(2.5px, -3.5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn svg { transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--sage-deep);
  color: var(--text-inverse);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sage);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn--ghost:hover {
  background: var(--sage-deep);
  color: var(--text-inverse);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--linen);
  color: var(--sage-deep);
}

.btn--light:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 0;
  background: var(--linen);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(122, 158, 135, 0.18), transparent 70%);
  top: -15%;
  right: -8%;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 160, 0.14), transparent 70%);
  bottom: 5%;
  left: -8%;
}

.hero-orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 219, 208, 0.22), transparent 70%);
  top: 35%;
  left: 28%;
}

.hero-orb--4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10), transparent 70%);
  top: 60%;
  right: 15%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--sage);
}

.hero-eyebrow span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title span { display: block; }

.hero-title em {
  color: var(--sage-dark);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 4px 16px rgba(44, 62, 48, 0.05);
  position: relative;
}

.hero-card-img {
  width: 380px;
  height: 460px;
}


.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 248, 242, 0.94);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 135, 0.25);
}

/* Floating cards */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-white);
  padding: 14px 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  animation: floatY 6s var(--ease) infinite;
}

.hero-float--top {
  top: 30px;
  left: -50px;
  animation-delay: 0s;
}

.hero-float--bottom {
  bottom: 40px;
  right: -40px;
  animation-delay: 2.5s;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--sage-muted);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-float strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-float span {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

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

/* Hero Stats Bar */
.hero-stats {
  margin-top: 64px;
  padding: 0 0 48px;
  position: relative;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  background: var(--warm-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--sage-light);
}


/* ===== Sections ===== */
.section {
  padding: 128px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--sage-muted);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.section-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== About ===== */
.about {
  background: var(--linen);
  padding-top: 80px;
  overflow: hidden;
}

.corner-leaf {
  position: absolute;
  top: 60px;
  right: 0;
  width: 140px;
  pointer-events: none;
  opacity: 0.6;
  transform: rotate(15deg);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--warm-white);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.about-card:hover::before { transform: scaleX(1); }

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}


.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--sage-muted);
  color: var(--sage-dark);
  margin-bottom: 20px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== Products ===== */
.products {
  background: var(--sage-deep);
  color: var(--text-inverse);
}

.products .section-tag {
  background: rgba(253, 248, 242, 0.12);
  color: rgba(253, 248, 242, 0.85);
}

.products .section-title { color: var(--linen); }
.products .section-title em { color: var(--sage-light); }
.products .section-desc { color: rgba(253, 248, 242, 0.65); }

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

.product-card {
  background: rgba(253, 248, 242, 0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  position: relative;
  border: 1px solid rgba(253, 248, 242, 0.10);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
  background: rgba(253, 248, 242, 0.10);
  border-color: rgba(200, 219, 208, 0.30);
}

.product-card--featured {
  border-color: rgba(200, 219, 208, 0.30);
  background: rgba(253, 248, 242, 0.10);
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--text-primary);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.product-img {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.82;
  transition: transform 0.7s var(--ease), opacity 0.4s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
  opacity: 0.92;
}

/* Clean image-to-body boundary — no gradient seam */

.product-body {
  padding: 28px 28px 32px;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 8px;
}

.product-body > p {
  font-size: 0.88rem;
  color: rgba(253, 248, 242, 0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-feats {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-feats li {
  font-size: 0.82rem;
  color: rgba(253, 248, 242, 0.60);
  padding-left: 20px;
  position: relative;
}

.product-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.7;
}

/* ===== Why Us ===== */
.why {
  background: var(--cream);
}

.blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  pointer-events: none;
}

/* Editorial numbered list — deliberately no cards, no boxes */
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  position: relative;
  z-index: 1;
}

.why-item {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-strong);
  transition: gap var(--dur) var(--ease);
}

.why-item:nth-child(1),
.why-item:nth-child(2) {
  border-top: 1px solid var(--border-strong);
}

.why-item:hover { gap: 32px; }
.why-item:hover .why-item-num { color: var(--sage-dark); }

.why-item-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(122, 158, 135, 0.22);
  letter-spacing: -0.05em;
  min-width: 56px;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color var(--dur) var(--ease);
  user-select: none;
}

.why-item-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-item-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* ===== Process ===== */
.process {
  background: var(--linen);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline-track {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sage), var(--border-strong));
}

.timeline-step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all var(--dur) var(--ease);
  box-shadow: inset 0 0 0 4px rgba(122, 158, 135, 0.08), var(--shadow-sm);
}

.timeline-step:hover .timeline-marker {
  background: var(--sage);
  box-shadow: var(--shadow-sage);
}

.timeline-step:hover .timeline-marker span { color: var(--warm-white); }

.timeline-marker span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage);
  transition: color var(--dur) var(--ease);
}

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

.timeline-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== CTA ===== */
.cta {
  background: var(--linen);
  padding: 80px 0;
}

.cta-block {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 60%, var(--sage-dark) 100%);
  border-radius: var(--r-xl);
  padding: 88px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 248, 242, 0.12), transparent 70%);
  top: -40%;
  right: -10%;
  pointer-events: none;
}

.cta-leaf-1 {
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 100px;
  height: 150px;
  pointer-events: none;
  opacity: 0.45;
}

.cta-leaf-2 {
  position: absolute;
  top: -10px;
  right: 60px;
  width: 80px;
  height: 120px;
  pointer-events: none;
  opacity: 0.35;
  transform: rotate(25deg);
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.cta-block h2 em { color: var(--sage-light); }

.cta-block p {
  color: rgba(253, 248, 242, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.cta-block .btn {
  position: relative;
  z-index: 2;
}

/* ===== Contact ===== */
.contact {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--sage-muted);
  color: var(--sage-dark);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--warm-white);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--linen);
  transition: all var(--dur) var(--ease);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-tertiary);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-muted);
  background: var(--warm-white);
}

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

/* ===== Footer ===== */
.footer {
  background: var(--sage-deep);
  color: rgba(253, 248, 242, 0.65);
  padding: 72px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(253, 248, 242, 0.10);
}

.footer-brand { max-width: 320px; }

.footer-brand .nav-logo-mark {
  background: rgba(253, 248, 242, 0.12);
  color: var(--linen);
}

.footer-brand .nav-logo-text { color: var(--linen); }
.footer-brand .nav-logo-text em { color: rgba(253, 248, 242, 0.55); }

.footer-brand > p {
  font-size: 0.9rem;
  color: rgba(253, 248, 242, 0.55);
  margin-top: 18px;
  line-height: 1.7;
}

.footer-columns { display: flex; gap: 64px; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(253, 248, 242, 0.55);
  transition: all var(--dur) var(--ease);
}

.footer-col a:hover {
  color: var(--linen);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 242, 0.35);
}

/* ===== Gallery ===== */
.gallery {
  background: var(--linen);
  padding: 0;
  overflow: hidden;
  margin-top: -1px; /* seal any sub-pixel seam with About section */
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 420px;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.gallery-frame-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.gallery-frame:hover .gallery-frame-bg {
  transform: scale(1.06);
}

.gallery-frame--1 .gallery-frame-bg {
  background-image:
    radial-gradient(ellipse at 25% 35%, rgba(30, 60, 44, 0.62) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(20, 45, 30, 0.55) 0%, transparent 60%),
    url('bihar-wetlands.webp');
  background-size: cover;
  background-position: center;
}

.gallery-frame--2 .gallery-frame-bg {
  background-image:
    radial-gradient(ellipse at 60% 30%, rgba(90, 55, 10, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 70%, rgba(60, 35, 10, 0.40) 0%, transparent 55%),
    url('sun-dried-process.webp');
  background-size: cover;
  background-position: center;
}

.gallery-frame--3 .gallery-frame-bg {
  background-image:
    radial-gradient(ellipse at 35% 30%, rgba(20, 50, 35, 0.50) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(15, 38, 25, 0.55) 0%, transparent 55%),
    url('export-ready.webp');
  background-size: cover;
  background-position: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 50, 38, 0.88) 0%, rgba(30, 50, 38, 0.18) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  z-index: 2;
}

.gallery-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(200, 219, 208, 0.80);
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--linen);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.40);
}

.gallery-desc {
  font-size: 0.82rem;
  color: rgba(253, 248, 242, 0.65);
  margin-top: 10px;
  line-height: 1.65;
  max-width: 240px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-frame:hover .gallery-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Trust / Global Footprint ===== */
.trust {
  background: var(--cream);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 64px;
  align-items: start;
}

.trust-certs-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  display: block;
}

.trust-certifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}

.cert-badge:hover {
  border-color: var(--sage-light);
  box-shadow: 0 4px 18px rgba(122, 158, 135, 0.14);
  transform: translateX(4px);
}

.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--sage-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cert-info { flex: 1; }

.cert-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cert-desc {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.cert-tick {
  width: 22px;
  height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-globe h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.3;
}

.trust-globe h3 em { color: var(--sage-dark); }

.globe-regions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.globe-region-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.globe-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.flag-chip:hover {
  border-color: var(--sage-light);
  background: var(--sage-muted);
  color: var(--sage-dark);
}

.flag-chip .flag { font-size: 1rem; }

/* ===== Section-tag color variants ===== */
.section-tag--gold {
  background: rgba(201, 168, 76, 0.12);
  color: #7a5c10;
}

.section-tag--blush {
  background: rgba(212, 165, 160, 0.18);
  color: #7a3d38;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--cream);
}

.testimonials-cta {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(90, 107, 94, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.testimonials-cta-copy {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.5;
}

.testimonials-cta-copy strong {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 500;
}

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

.testimonial-card {
  background: var(--warm-white);
  border: 1px solid rgba(193, 168, 135, 0.28);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  position: relative;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(100, 75, 45, 0.06);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold-muted-new));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(100, 75, 45, 0.13);
  transform: translateY(-5px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.7;
  color: rgba(212, 165, 160, 0.40);
  margin-bottom: 16px;
  user-select: none;
}

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

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-white);
  flex-shrink: 0;
}

.testimonial-avatar--sage  { background: var(--sage-dark); }
.testimonial-avatar--blush { background: var(--blush); }
.testimonial-avatar--gold  { background: var(--gold); color: #3d2e0a; }

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.77rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== Animations ===== */
.anim-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.45s; }
.anim-d5 { transition-delay: 0.6s; }
.anim-d6 { transition-delay: 0.75s; }

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  33%       { transform: rotate(2deg) translateY(-3px); }
  66%       { transform: rotate(-1.5deg) translateY(2px); }
}

/* ===== Focus Accessibility ===== */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Makhana Background Illustrations ===== */
.makhana-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.makhana-puff {
  position: absolute;
  color: var(--sage);
  opacity: 0.065;
}

@media (prefers-reduced-motion: no-preference) {
  .makhana-puff { transition: opacity 0.4s ease; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 48px; }
  .hero-title { font-size: 3.2rem; }
  .hero-card-img { width: 320px; height: 380px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }

  .nav-hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 242, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease);
    z-index: 5;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu .nav-link {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 400;
    padding: 16px 0;
    color: var(--text-primary);
  }

  .nav-link--cta {
    margin-top: 24px;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    background: var(--sage-deep) !important;
    color: var(--linen) !important;
    padding: 16px 48px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    display: inline-block !important;
    text-align: center !important;
  }

  .nav-link::after { display: none; }

  .hero { padding: 100px 0 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-card-img { width: 260px; height: 320px; }
  .hero-float { display: none; }

  .hero-stats-inner {
    flex-direction: row;
    gap: 24px;
    padding: 24px 32px;
  }

  .section { padding: 88px 0; }
  .about { padding-top: 40px !important; }
  .section-head { margin-bottom: 56px; }

  .about-cards,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-list { grid-template-columns: 1fr; column-gap: 0; }
  .why-item:nth-child(2) { border-top: none; }
  .testimonials-cta { flex-direction: column; align-items: flex-start; gap: 24px; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-block { padding: 56px 32px; }

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-columns { gap: 40px; }

  .timeline-track { left: 24px; }
  .timeline-marker { width: 50px; height: 50px; }

  .corner-leaf { display: none; }
  .blob-bg { display: none; }
  .cta-leaf-1, .cta-leaf-2 { display: none; }

  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-frame { height: 240px; }
  .gallery-desc { opacity: 1; transform: none; }
  /* Stronger overlay on all frames for mobile legibility */
  .gallery-overlay {
    background: linear-gradient(to top, rgba(10, 25, 18, 0.94) 0%, rgba(10, 25, 18, 0.60) 45%, rgba(10, 25, 18, 0.20) 100%);
  }
  /* Fix frame 3: include the local image URL (was missing on mobile) */
  .gallery-frame--3 .gallery-frame-bg {
    background-image:
      radial-gradient(ellipse at 35% 30%, rgba(20, 50, 35, 0.70) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 70%, rgba(15, 38, 25, 0.75) 0%, transparent 55%),
      url('export-ready.webp');
    background-size: cover;
    background-position: center;
  }
  .gallery-label { text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
  .gallery-tag  { text-shadow: 0 1px 4px rgba(0,0,0,0.40); }

  .trust-layout { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav { padding: 0 18px; }

  .hero-title { font-size: 2.2rem; }
  .hero-card-img { width: 220px; height: 270px; }

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

  .hero-stats-inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .hero-stat-sep { width: 40px; height: 1px; }

  .section-title { font-size: 1.8rem; }
  .about-card { padding: 28px 24px; }
  .contact-form { padding: 28px 22px; }
  .cta-block { padding: 44px 22px; }
  .cta-block h2 { font-size: 1.6rem; }
  .why-item { gap: 20px; padding: 32px 0; }
  .why-item-num { font-size: 1.8rem; min-width: 40px; }
}

@media (max-width: 380px) {
  .hero-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 20px 16px;
    text-align: center;
  }
  .hero-stat-sep { display: none; }
  .hero-stat-num { font-size: 1.4rem; }
}

/* ============================================================
   INNER PAGES — about.html · products.html
   ============================================================ */

/* ===== Page Hero (replaces full hero on inner pages) ===== */
.page-hero {
  padding: 160px 0 100px;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg .hero-orb { position: absolute; }

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.page-hero-eyebrow .eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--sage);
}

.page-hero-eyebrow span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.page-hero h1 em { color: var(--sage-dark); }

.page-hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
}

.page-hero-makhana-art {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: auto;
  color: var(--sage);
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.page-breadcrumb a {
  color: var(--sage-dark);
  transition: color var(--dur) var(--ease);
}

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

.page-breadcrumb span { color: var(--text-tertiary); }

/* Active nav state for inner pages (set via class on the link) */
.nav-link.is-active {
  color: var(--sage-dark);
}

.nav-link.is-active::after {
  transform: scaleX(1);
  background: var(--sage-dark);
}

/* ===== Story Section (about page) ===== */
.story {
  background: var(--warm-white);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.story-pull {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  border-right: 2px solid var(--sage-light);
  padding-right: 48px;
  padding-top: 4px;
  position: sticky;
  top: 110px;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-body p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.story-body p:first-child {
  font-size: 1.04rem;
  color: var(--text-primary);
}

/* ===== Heritage (full-bleed image section, about page) ===== */
.heritage {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 32, 22, 0.94) 0%, rgba(15, 32, 22, 0.72) 50%, rgba(15, 32, 22, 0.15) 100%),
    url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.heritage-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.heritage-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: block;
}

.heritage-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--linen);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.heritage-content h2 em { color: var(--sage-light); }

.heritage-content p {
  font-size: 0.94rem;
  color: rgba(253, 248, 242, 0.72);
  line-height: 1.82;
  margin-bottom: 14px;
}

.heritage-facts {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
  padding-top: 44px;
  border-top: 1px solid rgba(253, 248, 242, 0.12);
}

.heritage-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--linen);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.heritage-fact span {
  font-size: 0.72rem;
  color: var(--sage-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ===== Numbers Band ===== */
.numbers-band {
  background: var(--sage-deep);
  padding: 80px 0;
}

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

.number-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(253, 248, 242, 0.08);
}

.number-item:last-child { border-right: none; }

.number-val {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--linen);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.number-label {
  font-size: 0.75rem;
  color: rgba(253, 248, 242, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ===== Values Grid (about page) ===== */
.values {
  background: var(--cream);
}

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

.value-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--sage-muted);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* ===== Product Detail Cards (products page) ===== */
.product-catalogue {
  background: var(--linen);
}

.product-detail-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  margin-bottom: 28px;
  transition: box-shadow var(--dur) var(--ease);
}

.product-detail-card:last-child { margin-bottom: 0; }

.product-detail-card:hover { box-shadow: var(--shadow-lg); }

.product-detail-card.reverse {
  grid-template-columns: 1fr 420px;
}

.product-detail-card.reverse .product-detail-img {
  order: 2;
}

.product-detail-card.reverse .product-detail-body {
  order: 1;
}

.product-detail-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

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

.product-detail-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-body .section-tag {
  margin-bottom: 18px;
  align-self: flex-start;
}

.product-detail-body .btn {
  align-self: flex-start;
}

.product-detail-body h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.product-detail-body h2 em { color: var(--sage-dark); }

.product-detail-body > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: var(--linen);
  border-radius: var(--r-sm);
}

.spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

.spec-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ===== Packaging Section (products page) ===== */
.packing {
  background: var(--sage-deep);
}

.packing .section-title { color: var(--linen); }
.packing .section-title em { color: var(--sage-light); }
.packing .section-tag { background: rgba(253,248,242,0.10); color: var(--sage-light); letter-spacing: 0.14em; }
.packing .section-desc { color: rgba(253,248,242,0.62); }

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

.pack-card {
  background: rgba(253,248,242,0.06);
  border: 1px solid rgba(253,248,242,0.10);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  transition: all var(--dur) var(--ease);
}

.pack-card:hover {
  background: rgba(253,248,242,0.10);
  border-color: rgba(200,219,208,0.28);
  transform: translateY(-4px);
}

.pack-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.pack-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 10px;
}

.pack-card p {
  font-size: 0.87rem;
  color: rgba(253,248,242,0.58);
  line-height: 1.72;
  margin-bottom: 18px;
}

.pack-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pack-card li {
  font-size: 0.82rem;
  color: rgba(253,248,242,0.50);
  padding-left: 16px;
  position: relative;
}

.pack-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.7;
}

/* ===== Inner page responsive ===== */
@media (max-width: 1024px) {
  .product-detail-card,
  .product-detail-card.reverse {
    grid-template-columns: 1fr;
  }
  .product-detail-card.reverse .product-detail-img { order: 0; }
  .product-detail-card.reverse .product-detail-body { order: 0; }
  .product-detail-img { min-height: 280px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3),
  .number-item:nth-child(4) { border-top: 1px solid rgba(253, 248, 242, 0.08); }
}

@media (max-width: 768px) {
  .page-hero-makhana-art { display: none; }
  .page-hero { padding: 130px 0 72px; }
  .page-hero h1 { font-size: 2.6rem; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-pull { border-right: none; padding-right: 0; border-bottom: 2px solid var(--sage-light); padding-bottom: 32px; position: static; }
  .heritage-bg { background-attachment: scroll; }
  .heritage-facts { gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: 1fr; }
  .product-detail-body { padding: 36px 28px; }
  .product-specs { grid-template-columns: 1fr 1fr; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}
