/* ============================================================
   RIJAL ENTERPRISES KENYA — Design System
   Premium dark theme · gold / blue / red brand accents
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #101016;
  --bg-3: #16161d;
  --card: #121218;
  --ink: #f5f0e6;
  --ink-dim: #b9b3a6;
  --muted: #8d887d;
  --gold: #d9a92c;
  --gold-2: #f2c14e;
  --gold-soft: rgba(217, 169, 44, 0.12);
  --blue: #2e9bff;
  --blue-soft: rgba(46, 155, 255, 0.12);
  --red: #e63946;
  --wa: #25d366;
  --wa-dark: #128c4b;
  --line: rgba(245, 240, 230, 0.09);
  --line-2: rgba(245, 240, 230, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --font-display: "Space Grotesk", sans-serif;
  --font-serif: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); } 60% { transform: translate(-3%,-3%); }
  80% { transform: translate(4%,4%); }
}

::selection { background: var(--gold); color: #111; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.display-1 { font-size: clamp(2.7rem, 6.4vw, 5rem); }
.display-2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold-2);
}
.accent-blue { color: var(--blue); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.lead { color: var(--ink-dim); font-size: 1.08rem; max-width: 60ch; }

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin: 18px 0 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-head.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171204;
  box-shadow: 0 14px 34px -12px rgba(217, 169, 44, 0.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(217, 169, 44, 0.7); }

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #2fe372, var(--wa) 55%, #1da851);
  color: #04180c;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -12px rgba(37, 211, 102, 0.65); }

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--gold-2);
  border-bottom: 1px solid transparent;
  transition: gap .25s, border-color .25s;
}
.text-link:hover { gap: 14px; border-color: var(--gold); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .35s;
}
.site-header.scrolled .header-inner { height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; transition: height .35s; }
.site-header.scrolled .brand-logo { height: 38px; }

.main-nav { display: flex; gap: 6px; }
.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-dim);
  padding: 10px 14px;
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold-2); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
  z-index: 1100;
}
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s, top .3s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- mobile nav ---------- */
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav .nav-link { font-size: 1.6rem; padding: 12px 26px; }
  .header-actions .btn { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 48% at 78% 30%, rgba(217, 169, 44, 0.14), transparent 62%),
    radial-gradient(42% 40% at 12% 78%, rgba(46, 155, 255, 0.1), transparent 60%),
    radial-gradient(30% 26% at 55% 90%, rgba(230, 57, 70, 0.06), transparent 60%),
    var(--bg);
}
.hero-arc {
  position: absolute;
  top: -14vw; right: -10vw;
  width: 62vw;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { margin: 22px 0 20px; }
.hero-copy .lead { font-size: 1.14rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink-dim);
}
.trust-chip svg { color: var(--gold-2); }

.hero-visual { position: relative; }
.hero-visual .crate {
  position: relative; z-index: 2;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.65));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg);} 50% { transform: translateY(-18px) rotate(1deg);} }
.hero-halo {
  position: absolute;
  inset: 8% -6% -4% -6%;
  background: radial-gradient(50% 50% at 50% 55%, rgba(217,169,44,0.2), transparent 70%);
  z-index: 1;
}
.float-badge {
  position: absolute;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(16, 16, 22, 0.9);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.float-badge .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-2);
}
.float-badge b { font-family: var(--font-display); font-size: 0.92rem; display: block; line-height: 1.2; }
.float-badge small { color: var(--muted); font-size: 0.76rem; }
.float-badge.one { top: 6%; left: -4%; animation-delay: -2s; }
.float-badge.two { bottom: 8%; right: -3%; }
.float-badge .ic.blue { background: var(--blue-soft); color: var(--blue); }

/* ---------- marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  color: #171204;
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-1.2deg) scale(1.02);
  border-block: 1px solid rgba(0,0,0,0.25);
}
.marquee-track {
  display: flex; gap: 44px;
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 44px;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; font-size: 0.8em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s, box-shadow .45s;
}
.cat-card:hover { transform: translateY(-10px); border-color: rgba(217,169,44,0.45); box-shadow: var(--shadow); }
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(185deg, transparent 30%, rgba(6,6,8,0.55) 62%, rgba(6,6,8,0.94));
}
.cat-body { position: relative; z-index: 2; padding: 28px; width: 100%; }
.cat-num {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-2);
}
.cat-body h3 { font-size: 1.5rem; margin: 8px 0 8px; }
.cat-body p { color: var(--ink-dim); font-size: 0.93rem; margin-bottom: 16px; }
.cat-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--gold-2);
  transition: gap .3s;
}
.cat-card:hover .cat-link { gap: 15px; }

/* ---------- product cards ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.prod-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s;
}
.prod-card:hover { transform: translateY(-8px); border-color: rgba(217,169,44,0.4); box-shadow: var(--shadow); }
.prod-media { position: relative; aspect-ratio: 3 / 2.1; overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.prod-card:hover .prod-media img { transform: scale(1.08); }
.prod-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(8,8,10,0.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
  color: var(--gold-2);
}
.prod-tag.blue { color: var(--blue); }
.prod-tag.red { color: #ff8b94; }
.prod-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-body h3 { font-size: 1.16rem; }
.prod-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.prod-unit { font-size: 0.8rem; color: var(--ink-dim); letter-spacing: 0.04em; }
.prod-order {
  margin-top: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--wa);
  background: rgba(37, 211, 102, 0.07);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.prod-order:hover { background: var(--wa); color: #04180c; transform: translateY(-2px); border-color: var(--wa); }

/* ---------- filter tabs ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--ink-dim);
  transition: all .3s;
}
.filter-tab:hover { color: var(--ink); border-color: var(--gold); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
  color: #171204;
}
.prod-card.hide { display: none; }

/* ---------- values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s, border-color .4s, background .4s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(217,169,44,0.35); background: var(--bg-3); }
.value-card:hover::before { opacity: 1; }
.value-ic {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold-2);
  margin-bottom: 20px;
}
.value-card:nth-child(2) .value-ic { background: var(--blue-soft); color: var(--blue); }
.value-card:nth-child(3) .value-ic { background: rgba(230,57,70,0.12); color: #ff8b94; }
.value-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- farm strip ---------- */
.strip {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
}
.strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.05) 30%, rgba(8,8,10,0.88)); }
.strip-body { position: relative; z-index: 2; padding: clamp(28px, 4vw, 52px); max-width: 640px; }
.strip-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 12px 0 10px; }
.strip-body p { color: var(--ink-dim); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  transition: transform .4s, border-color .4s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(46,155,255,0.4); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .4s, border-color .4s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(217,169,44,0.35); }
.testi-stars { color: var(--gold-2); letter-spacing: 3px; font-size: 0.95rem; }
.testi-card blockquote { color: var(--ink-dim); font-size: 0.97rem; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  background: var(--gold-soft); color: var(--gold-2);
  border: 1px solid rgba(217,169,44,0.3);
}
.testi-who b { font-family: var(--font-display); font-size: 0.95rem; display: block; }
.testi-who small { color: var(--muted); font-size: 0.8rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, #191205 0%, #241a06 45%, #0d1420 100%);
  border: 1px solid rgba(217,169,44,0.3);
  padding: clamp(44px, 6vw, 84px);
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 65% at 18% 20%, rgba(217,169,44,0.22), transparent 65%),
    radial-gradient(40% 60% at 85% 85%, rgba(46,155,255,0.16), transparent 65%);
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta-inner h2 { margin: 16px 0 14px; }
.cta-inner .lead { margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-number {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--gold-2);
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
  padding: 70px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 54px;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--ink-dim); font-size: 0.94rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-2); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; color: var(--ink-dim); font-size: 0.94rem; align-items: flex-start; }
.footer-contact svg { color: var(--gold-2); flex: 0 0 auto; margin-top: 3px; }
.footer-contact a { color: var(--ink-dim); }
.footer-contact a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom b { color: var(--ink-dim); font-weight: 600; }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1500;
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2fe372, var(--wa) 60%, #1da851);
  color: #fff;
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.55);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wa-float:hover { transform: scale(1.12) rotate(6deg); }
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa-float .wa-tip {
  position: absolute;
  right: 74px;
  background: rgba(16,16,22,0.95);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 0.8rem; font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ---------- inner page hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 8vw, 110px)) 0 clamp(48px, 6vw, 84px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 82% 10%, rgba(217,169,44,0.13), transparent 60%),
    radial-gradient(40% 50% at 8% 90%, rgba(46,155,255,0.09), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 20px 0 18px; max-width: 16ch; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-top: 34px; }
.crumbs a { color: var(--ink-dim); transition: color .25s; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span[aria-current] { color: var(--gold-2); }

/* ---------- stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
}
.stat {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-size: 0.88rem; }

/* ---------- split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-dim); }
.check-list svg { color: var(--gold-2); flex: 0 0 auto; margin-top: 3px; }
.check-list b { color: var(--ink); font-weight: 600; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .35s, border-color .35s;
}
.contact-card:hover { transform: translateX(6px); border-color: rgba(217,169,44,0.4); }
.contact-card .ic {
  width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-2);
}
.contact-card .ic.green { background: rgba(37,211,102,0.12); color: var(--wa); }
.contact-card .ic.blue { background: var(--blue-soft); color: var(--blue); }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.93rem; }
.contact-card a:hover { color: var(--gold-2); }
.contact-card a.big { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim);
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,169,44,0.12);
}
.field select option { background: var(--bg-2); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(217,169,44,0.4); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  padding: 22px 26px;
  color: var(--ink);
}
.faq-q .chev { flex: 0 0 auto; transition: transform .35s; color: var(--gold-2); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 0.95rem; }

/* ---------- zone pills ---------- */
.zone-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.zone-pill {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--ink-dim);
  background: rgba(255,255,255,0.02);
}

/* ---------- reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 3000;
  display: flex; align-items: center; gap: 12px;
  background: rgba(16,16,22,0.97);
  border: 1px solid rgba(37,211,102,0.5);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  max-width: min(480px, 90vw);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { color: var(--wa); flex: 0 0 auto; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 48px) 0 70px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4 / 3.4; }
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps, .testi-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-badge.one { left: 0; }
  .float-badge.two { right: 0; }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- custom request card ---------- */
.prod-custom {
  background: transparent;
  border: 1.5px dashed rgba(217,169,44,0.45);
  justify-content: center;
}
.prod-custom .prod-body { justify-content: center; text-align: center; align-items: center; gap: 12px; }
.prod-custom .prod-body p { flex: 0; }
.custom-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold-2);
  margin-bottom: 6px;
}

/* ---------- stylised map card ---------- */
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(46% 60% at 50% 42%, rgba(217,169,44,0.12), transparent 65%),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(245,240,230,0.045) 46px 47px),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(245,240,230,0.045) 46px 47px),
    #0d0d12;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(63deg, transparent 49.6%, rgba(46,155,255,0.14) 49.6% 50.4%, transparent 50.4%),
    linear-gradient(115deg, transparent 49.6%, rgba(217,169,44,0.12) 49.6% 50.4%, transparent 50.4%);
}
.map-pin {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 62px; height: 62px;
  border-radius: 50% 50% 50% 4px;
  rotate: -45deg;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171204;
  box-shadow: 0 18px 40px -10px rgba(217,169,44,0.6);
}
.map-pin svg { rotate: 45deg; }
.map-pin::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(217,169,44,0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
.map-info { position: relative; z-index: 2; max-width: 460px; margin-top: 120px; }
.map-info h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 12px 0 10px; }
.map-info p { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 22px; }

/* ---------- mission quote ---------- */
.mission-quote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 30px 0;
}

/* ---------- values grid 3-col variant ---------- */
.values-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1020px) { .values-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid.cols-3 { grid-template-columns: 1fr; } }

/* ---------- quantity picker ---------- */
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}
.qty-row label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.qty-select {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d9a92c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.qty-select:hover { border-color: var(--gold); }
.qty-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,169,44,0.15); }
.qty-select option { background: var(--bg-2); color: var(--ink); }
.prod-order { margin-top: 12px; }
