@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --green-deep: #173624;
  --green-mid: #245238;
  --green-bright: #2d7a52;
  --green-light: #59a97a;
  --green-pale: #edf7f0;
  --gold: #ca8e2f;
  --gold-light: #e8b870;
  
  --cream: #f7f8f4;
  --cream-dark: #edf0e6;
  --text-dark: #1f2e24;
  --text-mid: #3f5147;
  --text-muted: #66786d;
  --white: #ffffff;
  --border: rgba(31, 46, 36, 0.1);

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --shadow-sm: 0 8px 20px rgba(27, 55, 40, 0.08);
  --shadow-md: 0 18px 40px rgba(27, 55, 40, 0.14);
  --shadow-lg: 0 28px 70px rgba(27, 55, 40, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --transition: all 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 8%, rgba(202, 142, 47, 0.10), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(45, 122, 82, 0.08), transparent 30%),
    linear-gradient(180deg, #111413 0%, #171a18 46%, #1f2320 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(1200px, 100% - 56px);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.text-center {
  text-align: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: none;
  padding: 14px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #0f2a1a;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b07622 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  box-shadow: var(--shadow-md);
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 14px;
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(13, 16, 15, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.header.scrolled {
  padding-top: 8px;
}

.header.scrolled .container {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(31, 46, 36, 0.08);
  box-shadow: 0 14px 34px rgba(27, 55, 40, 0.12);
}

.header.scrolled .nav a {
  color: var(--text-mid);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
  background: var(--green-deep);
  color: var(--white);
}

.header.scrolled .mobile-menu-btn {
  color: var(--green-deep);
}

.header.scrolled #productSearch {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-mid);
  border-color: rgba(31, 46, 36, 0.12);
}

.header.scrolled #searchBtn {
  color: var(--green-deep);
}

.header.scrolled .search-dropdown {
  background: var(--white);
}

.header.scrolled .search-dropdown li {
  color: var(--text-mid);
  border-bottom-color: rgba(31, 46, 36, 0.04);
}

.header.scrolled .search-dropdown li:hover {
  background: var(--cream-dark);
}

body.product-page .header .container,
body.product-page .header.scrolled .container {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 46, 36, 0.08);
  box-shadow: 0 14px 34px rgba(27, 55, 40, 0.10);
}

body.product-page .nav a,
body.product-page .header.scrolled .nav a {
  color: var(--text-mid);
}

body.product-page .nav a:hover,
body.product-page .nav a.active,
body.product-page .header.scrolled .nav a:hover,
body.product-page .header.scrolled .nav a.active {
  background: var(--green-deep);
  color: var(--white);
}

body.product-page .mobile-menu-btn,
body.product-page .header.scrolled .mobile-menu-btn {
  color: var(--green-deep);
}

body.product-page #productSearch,
body.product-page .header.scrolled #productSearch {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-mid);
  border-color: rgba(31, 46, 36, 0.12);
}

body.product-page #searchBtn,
body.product-page .header.scrolled #searchBtn {
  color: var(--green-deep);
}

body.product-page .search-dropdown,
body.product-page .header.scrolled .search-dropdown {
  background: var(--white);
}

body.product-page .search-dropdown li,
body.product-page .header.scrolled .search-dropdown li {
  color: var(--text-mid);
  border-bottom-color: rgba(31, 46, 36, 0.04);
}

body.product-page .search-dropdown li:hover,
body.product-page .header.scrolled .search-dropdown li:hover {
  background: var(--cream-dark);
}

.logo img {
  height: 48px;
  width: auto;
}

/* site logo variants */
.site-logo {
  height: 56px;
  width: auto;
  scale:1.1;
}

/* small inline logo used inside product pages */
.inline-logo {
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav a {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 999px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.3rem;
}

/* Navbar search */
.nav-search {
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.search-wrap {
  position: relative;
}
#productSearch {
  width: 160px;
  padding: 8px 36px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255,255,255,0.06);
  transition: width 0.28s ease, box-shadow 0.2s ease;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.90);
}
#productSearch:focus {
  width: 260px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  outline: none;
}
#searchBtn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.82);
  padding: 6px;
  cursor: pointer;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(18, 21, 19, 0.98);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  max-height: 220px;
  overflow: auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  z-index: 1200;
}
.search-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-dropdown li {
  padding: 10px 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.search-dropdown li:hover {
  background: rgba(255,255,255,0.06);
}

@media (max-width: 880px) {
  .nav-search { display: none; }
  #productSearch { width: 120px; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(130deg, #0d100f 0%, #151816 55%, #1c201d 100%);
}

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

/* homepage background image styling */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.1);
  transition: transform 14s ease-out;
  filter: saturate(0.98) contrast(1.02) brightness(0.92);
  will-change: transform;
}

/* subtle overlay for readability (light modern feel) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.30) 0%, rgba(7, 9, 8, 0.14) 42%, rgba(7, 9, 8, 0.04) 100%),
    linear-gradient(180deg, rgba(17, 20, 19, 0.36) 0%, rgba(17, 20, 19, 0.22) 40%, rgba(17, 20, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(202, 142, 47, 0.06) 0%, rgba(202, 142, 47, 0.02) 100%);
  pointer-events: none;
}

/* stronger contrast on the dark hero */
.hero-content h1,
.hero-content p,
.hero-eyebrow {
  text-shadow: 0 1px 0 rgba(0,0,0,0.28);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(202, 142, 47, 0.08) 0%, transparent 44%),
    radial-gradient(circle at 78% 28%, rgba(45, 122, 82, 0.10), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.07), transparent 28%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 16, 15, 0) 0%, rgba(248, 250, 246, 0.55) 72%, #f8faf6 100%);
}


.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 84px 0 80px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 700;
  animation: fadeUp 0.6s 0.05s ease both;
}

.hero h1 em {
  font-style: italic;
  color: #ffffff;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.12s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.hero .btn {
  min-width: 150px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  box-shadow: var(--shadow-sm);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}

.hero .btn-outline:hover {
  background: #ffffff;
  color: var(--green-deep);
}

.hero .btn-gold {
  background: linear-gradient(135deg, #d99c35 0%, #b97c22 100%);
  box-shadow: 0 8px 22px rgba(185, 119, 45, 0.14);
}

.hero .btn-gold:hover {
  filter: brightness(1.05);
}

.stats-section {
  margin-top: 0;
  padding: 22px 0 42px;
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #f8faf6 0%, #ffffff 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 46, 36, 0.06);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(27, 55, 40, 0.10);
  overflow: hidden;
}

.stat-card {
  position: relative;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(31, 46, 36, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
  animation: none;
}

.stats-grid.visible .stat-card {
  animation: statCardEnter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.stat-card::before {
  display: none;
}

.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(45, 122, 82, 0.10);
  color: var(--green-bright);
  font-size: 1rem;
}

.stat-card:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.6s;
}

.stats-grid.visible .stat-card:nth-child(2) {
  animation-delay: 0.12s;
}

.stats-grid.visible .stat-card:nth-child(3) {
  animation-delay: 0.24s;
}

.stats-grid.visible .stat-icon {
  animation: iconPop 0.7s ease both;
}

.stats-grid.visible .stat-card:nth-child(2) .stat-icon {
  animation-delay: 0.12s;
}

.stats-grid.visible .stat-card:nth-child(3) .stat-icon {
  animation-delay: 0.24s;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card .number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.stat-card .label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b6e64;
}

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

@keyframes statCardEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* parallax-like effect on larger screens */
@media (min-width: 900px) {
  .hero-bg img {
    background-attachment: fixed;
    transform: scale(1.06);
  }
}

.about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Large branded logo used in About visual */
.about-logo-main {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  display: block;
  border-radius: 18px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  object-fit: contain;
  
}

.about-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
}

.about-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-deep);
  line-height: 1;
}

.about-badge .lbl {
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 18px;
}

.about-logo-mobile {
  display: none;
}

.about-logo-mobile img {
  width: 100%;
  max-width: 240px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-pillars {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar {
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.pillar i {
  color: var(--green-bright);
  font-size: 1.05rem;
  margin-bottom: 9px;
}

.pillar h4 {
  color: var(--green-deep);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.products {
  background:
    radial-gradient(circle at 20% 0%, rgba(45, 122, 82, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8faf6 54%, #eff5ef 100%);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.products > .container {
  position: relative;
  z-index: 1;
}

.products-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}


.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 46, 36, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}


.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4; /* portrait ratio to suit product bags */
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  overflow: hidden;
  padding: 18px; /* breathing space */
  border-bottom: 1px solid rgba(31,46,36,0.04);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.product-card-image img {
  height: 100%;
  width: auto;
  object-fit: contain; /* show entire image within the box */
  object-position: center top;
  transition: transform 0.45s ease, filter 0.45s ease;
  display: block;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

/* framed image look */
.product-card-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 26px rgba(31,46,36,0.05);
}

/* Pine image: crop slightly from right for better framing */
.product-card-image img.product-image--pine {
  object-fit: cover;
  object-position: center top;
  height:94%;
  width: auto;
  transform: translateY(-12%);
  margin-top: 40px;
}



/* subtle card polish */
.product-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 46, 36, 0.08);
  color: var(--green-mid);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-card-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-deep);
  color: var(--white);
}

.product-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-content h3 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.35rem;
  margin-bottom: 1px;
}

.product-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: -190px;
  flex: 1;
}

.product-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.product-card-footer span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 999px;
  padding: 5px 10px;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
}

.know-more-btn:hover {
  color: var(--gold);
}

.logistics {
  background: linear-gradient(140deg, #f6f9f3 0%, #ecf6ef 100%);
}

.logistics-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.logistics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 1.4rem;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.feature h3 {
  color: var(--green-deep);
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.logistics-visual img {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.contact {
  background:
    radial-gradient(circle at top left, rgba(45, 122, 82, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
}

.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
}

.contact-info-card {
  border-radius: 20px;
  padding: 40px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f2 100%);
  color: var(--text-dark);
  border: 1px solid rgba(31, 46, 36, 0.08);
  box-shadow: 0 18px 40px rgba(27, 55, 40, 0.08);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 10px;
  color: var(--green-deep);
}

.contact-info-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 13px;
}

.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(45, 122, 82, 0.10);
  display: grid;
  place-items: center;
  color: var(--green-deep);
}

.info-text h4 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.info-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.contact-form-wrap {
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 20px;
  padding: 40px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
  box-shadow: 0 18px 40px rgba(27, 55, 40, 0.08);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid rgba(31, 46, 36, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-dark);
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(45, 122, 82, 0.12);
}

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

.footer {
  background: #112a1c;
  color: var(--white);
  padding-top: 74px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 38px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

/* footer logo when using the colored asset */
.footer-logo {
  height: 72px;
  filter: none;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  max-width: 290px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.footer-col ul a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 9px;
  margin-bottom: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--white);
}

.newsletter {
  display: flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px 14px;
  outline: none;
  font-size: 0.84rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
  border: none;
  background: var(--gold);
  color: var(--white);
  padding: 10px 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 19px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-bottom i {
  color: var(--gold-light);
}

/* smaller 'Designed with <3' and red heart */
.footer-bottom p:last-child {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom p:last-child i {
  color: #e74c3c; /* red heart */
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(1px);
}

@media (max-width: 520px) {
  .footer-bottom p:last-child {
    font-size: 0.78rem;
  }
  .footer-bottom p:first-child { font-size: 0.82rem; }
}

@media (max-width: 520px) {
  .footer {
    padding-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 18px 0 6px;
  }

  .footer-bottom p {
    color: rgba(255,255,255,0.72);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.45;
  }

  .footer-bottom i {
    color: var(--gold);
    margin: 0 6px;
  }
}

body.product-page {
  background:
    radial-gradient(circle at top left, rgba(45, 122, 82, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
  color: var(--text-dark);
}

body.product-page .product-detail-hero {
  background: linear-gradient(130deg, #ffffff 0%, #f5f9f3 100%);
  border-bottom: 1px solid rgba(31, 46, 36, 0.08);
}

body.product-page .product-detail-content {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

body.product-page .specifications,
body.product-page .step-card,
body.product-page .other-product-card {
  background: #ffffff;
}

body.product-page .other-products {
  background: linear-gradient(180deg, #fafcf8 0%, #f1f7f2 100%);
}

body.product-page .contact-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8f2 100%);
  color: var(--text-dark);
  border-top: 1px solid rgba(31, 46, 36, 0.08);
  border-bottom: 1px solid rgba(31, 46, 36, 0.08);
}

body.product-page .contact-cta p {
  color: var(--text-muted);
}

body.product-page .footer {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ed 100%);
  color: var(--text-dark);
  border-top: 1px solid rgba(31, 46, 36, 0.08);
}

body.product-page .footer-grid {
  border-bottom: 1px solid rgba(31, 46, 36, 0.08);
}

body.product-page .footer-brand img {
  filter: none;
}

body.product-page .footer-brand p,
body.product-page .footer-col ul a,
body.product-page .footer-bottom p {
  color: var(--text-muted);
}

body.product-page .footer-col h4 {
  color: var(--green-mid);
}

body.product-page .footer-col ul a:hover {
  color: var(--green-deep);
}

body.product-page .social-icons a {
  background: rgba(45, 122, 82, 0.08);
  color: var(--green-deep);
}

body.product-page .social-icons a:hover {
  background: var(--green-deep);
  color: var(--white);
}

body.product-page .newsletter {
  border-color: rgba(31, 46, 36, 0.12);
}

body.product-page .newsletter input {
  background: #ffffff;
  color: var(--text-dark);
}

body.product-page .newsletter input::placeholder {
  color: var(--text-muted);
}

body.product-page .newsletter button {
  background: var(--green-deep);
}

.product-detail-hero {
  padding: 172px 0 84px;
  background: linear-gradient(130deg, #eef7f2 0%, #f8f9f3 100%);
  border-bottom: 1px solid rgba(31, 46, 36, 0.08);
}

.product-detail-hero h1 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}

.product-detail-hero p {
  color: var(--text-mid);
  max-width: 720px;
  font-size: 1.04rem;
}

.breadcrumb {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--green-mid);
}

.breadcrumb i {
  font-size: 0.58rem;
}

.product-detail-content {
  padding: 76px 0;
}

.product-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-bottom: 54px;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.main-product-image--grain {
  object-position: center top;
}

.main-product-image--top-crop {
  object-position: center top;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  opacity: 0.72;
  cursor: pointer;
  transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: var(--green-bright);
}

.product-details h2 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 2rem;
  margin-bottom: 14px;
}

.product-details p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.feature-item {
  font-size: 0.86rem;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-item i {
  color: var(--green-bright);
}

.product-details h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.22rem;
}

.product-details ul li {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.9rem;
}

.product-details ul li:last-child {
  border-bottom: none;
}

.specifications {
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 34px;
  margin: 34px 0;
}

.specifications h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.7rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 12px 10px;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  width: 40%;
  color: var(--green-mid);
  font-weight: 700;
}

.spec-table td:last-child {
  color: var(--text-mid);
}

.steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(31, 46, 36, 0.08);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 24px 20px;
}

.step-num {
  margin: 0 auto 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 700;
}

.step-card h4 {
  color: var(--green-deep);
  margin-bottom: 7px;
  font-size: 0.95rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.other-products {
  background: linear-gradient(180deg, #f9fcf9 0%, #f2f8f3 100%);
  padding: 74px 0;
}

.other-products-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.other-product-card {
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 24px 18px;
  transition: var(--transition);
}

.other-product-card:hover {
  transform: translateY(-4px);
}

.other-product-card i {
  font-size: 1.9rem;
  color: var(--green-bright);
  margin-bottom: 10px;
}

.other-product-card h4 {
  color: var(--green-deep);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.other-product-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.back-to-products {
  text-align: center;
  margin-top: 40px;
}

.contact-cta {
  background: linear-gradient(140deg, #19482f 0%, #245e3c 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 10px;
}

.contact-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.cold-chain-banner,
.quality-guarantee-box {
  border-radius: 16px;
  padding: 24px;
  margin: 22px 0;
}

.cold-chain-banner {
  background: linear-gradient(130deg, #eef7f0 0%, #e2f2e6 100%);
  border: 1px solid rgba(45, 122, 82, 0.2);
}

.cold-chain-banner i {
  font-size: 2.1rem;
  color: var(--green-bright);
  margin-bottom: 10px;
}

.cold-chain-banner h3,
.quality-guarantee-box h3 {
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cold-chain-banner p {
  color: var(--text-mid);
  margin: 0;
}

.product-grid,
.spice-varieties,
.organic-products-grid {
  margin: 34px 0;
  display: grid;
  gap: 16px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-category,
.spice-item,
.organic-product-card,
.cert-badge {
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.product-category {
  padding: 22px;
}

.product-category h3 {
  color: var(--green-deep);
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}

.product-category li {
  border-bottom: 1px dashed var(--border);
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.86rem;
}

.product-category li:last-child {
  border-bottom: none;
}

.spice-varieties {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.spice-item {
  text-align: center;
  padding: 24px 18px;
}

.spice-item i {
  font-size: 1.8rem;
  color: #cc5b2d;
  margin-bottom: 10px;
}

.spice-item h4 {
  color: var(--green-deep);
  margin-bottom: 6px;
}

.spice-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.quality-guarantee-box {
  background: linear-gradient(130deg, #fff8ea 0%, #f6f0dd 100%);
  border: 1px solid rgba(202, 142, 47, 0.24);
}

.quality-guarantee-box ul {
  list-style: disc;
  padding-left: 20px;
  columns: 2;
}

.quality-guarantee-box ul li {
  border: none;
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 4px 0;
}

.certification-badges {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cert-badge {
  min-width: 130px;
  text-align: center;
  padding: 15px 12px;
}

.cert-badge i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cert-badge h4 {
  color: var(--green-deep);
  font-size: 0.76rem;
}

.organic-products-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.organic-product-card {
  padding: 22px;
}

.organic-product-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 1rem;
  margin-bottom: 12px;
}

.organic-product-card li {
  border-bottom: 1px dashed var(--border);
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.87rem;
}

.organic-product-card li:last-child {
  border-bottom: none;
}

.epal-hero {
  background: linear-gradient(135deg, #e8f4ec 0%, #f4f7ef 100%);
  color: var(--green-deep);
  text-align: center;
  padding: 170px 0 90px;
}

.epal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.epal-hero p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--text-mid);
}

.epal-tagline {
  background: linear-gradient(120deg, var(--gold) 0%, #b37926 100%);
  color: var(--white);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px;
}

.epal-content {
  padding: 72px 0;
}

.epal-section {
  margin-bottom: 60px;
}

.epal-section h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--green-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}

.epal-section p {
  color: var(--text-mid);
}

.product-highlight,
.spec-card,
.epal-image-card,
.benefit-card,
.market-card,
.container-details,
.doc-card {
  background: var(--white);
  border: 1px solid rgba(31, 46, 36, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.product-highlight {
  border-left: 4px solid var(--green-bright);
  padding: 24px;
  margin: 22px 0;
}

.product-highlight h3 {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 1.02rem;
}

.product-highlight p {
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.spec-grid,
.benefits-grid,
.markets-grid,
.documents-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.spec-grid,
.markets-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefits-grid,
.documents-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.spec-card,
.benefit-card,
.market-card,
.doc-card {
  padding: 22px;
  text-align: center;
}

.spec-card i,
.benefit-card i,
.market-card i {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.spec-card i,
.benefit-card i {
  color: var(--green-bright);
}

.market-card i,
.doc-card h4 i {
  color: var(--gold);
}

.spec-card h4,
.benefit-card h4,
.market-card h4,
.doc-card h4 {
  color: var(--green-deep);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.spec-card p,
.benefit-card p,
.market-card p,
.doc-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
}

.epal-images {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.epal-image-card {
  overflow: hidden;
}

.epal-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.epal-image-card p {
  text-align: center;
  font-size: 0.84rem;
  color: var(--green-deep);
  font-weight: 700;
  padding: 12px;
}

.container-details {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  align-items: center;
}

.container-info h3 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin-bottom: 14px;
}

.container-info li {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.container-info li:last-child {
  border-bottom: none;
}

.container-image img {
  border-radius: 14px;
}

.doc-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-section {
  margin-top: 36px;
  border-radius: 24px;
  background: linear-gradient(140deg, #19462d 0%, #245d3a 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 36px;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-btns {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .about-grid,
  .logistics-grid,
  .contact-grid,
  .product-main-info {
    grid-template-columns: 1fr;
  }

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

  .container-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    background:
      radial-gradient(circle at 10% 8%, rgba(202, 142, 47, 0.08), transparent 28%),
      radial-gradient(circle at 88% 15%, rgba(45, 122, 82, 0.06), transparent 30%),
      linear-gradient(180deg, #f9fbf7 0%, #ffffff 100%);
  }

  html {
    overflow-x: clip;
  }

  .container {
    width: min(1200px, 100% - 34px);
  }

  .section {
    padding: 72px 0;
  }

  .header {
    padding-top: 8px;
  }

  .header .container {
    padding: 9px 12px;
    border-radius: 22px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    background: rgba(13, 16, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30);
    padding: 14px;
  }

  .header.scrolled .nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(31, 46, 36, 0.08);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
  }

  .header.scrolled .nav a {
    color: var(--text-mid);
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .header.scrolled .nav a:hover,
  .header.scrolled .nav a.active {
    background: var(--green-deep);
    color: var(--white);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  #home {
    order: 1;
  }

  #about {
    order: 2;
  }

  .stats-section {
    order: 3;
  }

  #products {
    order: 4;
  }

  #logistics {
    order: 5;
  }

  #contact {
    order: 6;
  }

  .footer {
    order: 7;
  }

  .hero-content {
    padding: 92px 0 20px;
  }


  .stats-section {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .stat-card {
    display: block;
    text-align: center;
    padding: 22px 16px 20px;
    border: 1px solid rgba(31, 46, 36, 0.08);
    border-left: none;
    border-radius: 18px;
    min-height: 0;
    box-shadow: 0 8px 18px rgba(27, 55, 40, 0.05);
    width: 100%;
  }

  .stat-card .number {
    font-size: clamp(1.75rem, 6vw, 2.15rem);
    margin-bottom: 8px;
  }

  .stat-card .label {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
    max-width: none;
  }

  .stat-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .form-row,
  .product-features,
  .about-pillars,
  .logistics-features {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .contact-info-card,
  .contact-form-wrap {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .contact-info-card h3,
  .contact-form-wrap h3 {
    font-size: 1.28rem;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .contact-info-card > p {
    margin-bottom: 18px;
    font-size: 0.86rem;
  }

  .info-items {
    gap: 14px;
  }

  .info-item {
    gap: 10px;
    align-items: flex-start;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .info-text h4 {
    font-size: 0.68rem;
    margin-bottom: 2px;
  }

  .info-text p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .form-row {
    gap: 0;
  }

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

  .form-group label {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .contact-form-wrap button[type="submit"] {
    padding: 14px 16px;
    font-size: 0.78rem;
  }


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

  .logistics-visual,
  .container-image {
    display: none;
  }

  .about-grid {
    gap: 26px;
  }

  .about-text {
    order: 1;
    text-align: center;
  }

  .about-visual {
    display: none;
  }

  .about-logo-mobile {
    display: block;
    margin: 8px 0 10px;
    display: flex;
    justify-content: center;
  }

  .about-logo-main {
    max-width: 280px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 16px;
  }

  .about-pillars {
    text-align: left;
  }

  .cta-section {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .section-title {
    font-size: clamp(1.7rem, 6.2vw, 2.2rem);
    line-height: 1.08;
    margin-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    gap: 10px;
    width: min(100%, 320px);
  }

  .stat-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-logo-mobile {
    margin: 10px 0 12px;
  }

  .about-logo-mobile img {
    width: min(72vw, 220px);
    max-width: 220px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(31, 46, 36, 0.08);
    box-shadow: var(--shadow-md);
  }

  .about-logo-main {
    max-width: 190px;
    padding: 12px;
  }

  .hero h1 {
    font-size: 2.05rem;
    line-height: 0.96;
    letter-spacing: -0.03em;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Modern mobile hero: frosted glass panel and stronger CTAs */
  .hero-content {
    max-width: 460px;
    background: linear-gradient(160deg, rgba(20, 31, 36, 0.58) 0%, rgba(12, 18, 22, 0.30) 62%, rgba(12, 18, 22, 0.22) 100%);
    padding: 22px 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 16px 34px rgba(7, 9, 8, 0.26);
    backdrop-filter: blur(4px) saturate(112%);
    -webkit-backdrop-filter: blur(4px) saturate(112%);
    margin: 10px auto 8px;
    overflow: hidden;
  }

  .hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .hero-eyebrow {
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.16em;
    font-size: 0.58rem;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 8.9vw, 2.22rem);
    line-height: 1;
    color: #fff;
    text-shadow: 0 8px 24px rgba(7, 9, 8, 0.62);
    margin-bottom: 13px;
    max-width: 11ch;
  }

  .hero p {
    color: rgba(255,255,255,0.92);
    font-size: 0.91rem;
    line-height: 1.58;
    margin-bottom: 17px;
    max-width: 34ch;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero .btn-gold {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(186, 120, 39, 0.30);
    font-weight: 800;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero .btn-outline {
    width: 100%;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.34);
    color: rgba(255,255,255,0.94);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 18px rgba(8, 12, 14, 0.18);
  }

  .hero .btn:active {
    transform: translateY(1px) scale(0.998);
  }

  .hero::after {
    height: 38px;
    background: linear-gradient(180deg, rgba(13, 16, 15, 0) 0%, rgba(13, 16, 15, 0.18) 100%);
  }

  /* increase background image visibility on mobile */
  .hero-bg img {
    opacity: 0.68;
    transform: scale(1.14);
    filter: saturate(1.02) contrast(1.04) brightness(0.98);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.18) 0%, rgba(7, 9, 8, 0.08) 42%, rgba(7, 9, 8, 0.02) 100%),
      linear-gradient(180deg, rgba(17, 20, 19, 0.18) 0%, rgba(17, 20, 19, 0.12) 40%, rgba(17, 20, 19, 0.06) 100%),
      linear-gradient(180deg, rgba(202, 142, 47, 0.02) 0%, rgba(202, 142, 47, 0.008) 100%);
  }

  .spice-varieties {
    grid-template-columns: 1fr 1fr;
  }

  .quality-guarantee-box ul {
    columns: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-info-card,
  .contact-form-wrap {
    padding: 22px 16px;
  }

  .contact-info-card h3,
  .contact-form-wrap h3 {
    font-size: 1.18rem;
  }

  .info-item {
    gap: 9px;
  }

  .info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

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

  .contact-form-wrap button[type="submit"] {
    width: 100%;
  }
}