:root {
  --red: #d63b2f;
  --red-dark: #b02e24;
  --red-light: #f5edec;
  --honey: #f0a500;
  --honey-light: #fef3d6;
  --ink: #1a1108;
  --ink2: #3d2f1e;
  --warm-mid: #7a6352;
  --warm-light: #f7f0e8;
  --warm-bg: #fdf8f2;
  --border: rgba(26,17,8,0.1);
  --white: #ffffff;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--warm-bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink);
}
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--ink2); letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-btn {
  padding: .6rem 1.4rem;
  background: var(--red); color: var(--white);
  font-family: 'Syne', sans-serif; font-size: .82rem;
  font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .2s;
}
.nav-btn:hover { background: var(--red-dark); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 70px;
  overflow: hidden;
}
.hero-left {
  padding: 6rem 6% 5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--warm-bg);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: var(--red); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--red);
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -.03em; color: var(--ink);
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--red); font-family: 'Instrument Sans'; font-weight: 300; }

.hero-sub {
  font-size: 1.05rem; color: var(--warm-mid);
  max-width: 480px; line-height: 1.75;
  margin-bottom: 2.5rem; font-weight: 400;
}

.btn-red {
  padding: .9rem 2.2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Syne';
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.2s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  padding: .9rem 2.2rem;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
  transition: .2s;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.hero-badges {
  display: flex; gap: 1.5rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.badge { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--warm-mid); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--honey); }
.step-icon {
  width: 44px; height: 44px;
  background: rgba(214,59,47,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: .6rem; color: var(--white);
}
.process-step p { font-size: .85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── CATEGORIES SHOWCASE ── */
.categories-showcase { background: var(--white); padding: 6rem 5%; }
.categories-showcase h2 { text-align: center; margin-bottom: .5rem; }
.categories-showcase .lead { text-align: center; margin: 0 auto 3rem; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cat-card { position: relative; overflow: hidden; cursor: pointer; }
.cat-card img { height: 260px; object-fit: cover; transition: transform .4s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,17,8,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
}
.cat-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
}
.cat-card-sub { font-size: .75rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── CONTACT ── */
.contact { background: var(--warm-bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info p { color: var(--warm-mid); margin: 1rem 0 2rem; max-width: 400px; line-height: 1.8; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white); border-left: 3px solid var(--honey);
}
.contact-detail-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--red); min-width: 55px;
}
.contact-detail-val { font-size: .95rem; color: var(--ink2); font-weight: 500; }
.trust-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.trust-card {
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: .82rem; color: var(--ink2); font-weight: 500;
  display: flex; align-items: center; gap: 8px; line-height: 1.4;
}
.trust-card::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--honey); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--warm-mid);
}
.form-group input, .form-group select, .form-group textarea {
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-size: .95rem; outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(26,17,8,0.3); }
.form-success {
  display: none; margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #edf7ed; border-left: 3px solid #4caf50;
  font-size: .9rem; color: #2e7d32;
}

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.9);
  padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 3px solid var(--red);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-legal { font-size: .78rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .78rem; color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.footer-links a:hover { color: var(--honey); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-left > * { opacity:0; animation: fadeUp .65s forwards; }
.hero-eyebrow { animation-delay:.1s }
h1 { animation-delay:.25s }
.hero-sub { animation-delay:.4s }
.hero-left .btn-red, .hero-left .btn-outline { animation-delay:.55s }
.hero-badges { animation-delay:.7s }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .hero { grid-template-columns:1fr; }
  .hero-right { min-height:350px; order:-1; }
  .about-inner, .wholesalers-inner, .contact-inner { grid-template-columns:1fr; gap:2.5rem; }
  .wholesalers-content { order:1; }
  .wholesalers-visual { order:2; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .process-step:nth-child(2) { border-right:none; }
  .cat-grid { grid-template-columns:1fr 1fr; }
  .about-img-tag { right:0; bottom:-1rem; }
}
@media(max-width:620px){
  .nav-links { display:none; }
  .process-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
  .trust-cards { grid-template-columns:1fr; }
  .trust-bar { gap:1.5rem; }
  .categories-grid { grid-template-columns:1fr 1fr; }
}
<!-- FOR WHOLESALERS -->
<section class="wholesalers" id="wholesalers">
  ... (all wholesalers HTML)
</section>

<!-- PROCESS -->
<section class="process" id="process">
  ... (all process steps)
</section>

<!-- CATEGORY SHOWCASE -->
<section class="categories-showcase">
  ... (category cards)
</section>

<!-- CONTACT -->
<section class="contact" id="contact">
  ... (contact form + trust cards + details)
</section>

<!-- FOOTER -->
<footer>
  ... (footer content)
</footer>
/* Continue with rest of your CSS exactly as provided… */
