/* ==========================================================================
   Nashixwa Investment — Black & White child theme overrides
   Loads after the parent's main.css (see functions.php dependency), so
   these values win. Every other CSS rule in the parent theme already
   references the custom properties below, so redefining them here is
   enough to turn the whole site (including the Shop) grayscale.
   ========================================================================== */

:root{
  --void:#0a0a0a;
  --ink:#101010;
  --panel:#161616;
  --panel-2:#1c1c1c;
  --line:#333333;
  --signal:#e0e0e0;
  --signal-dim:#555555;
  --signal-bright:#ffffff;
  --sage:#999999;
  --paper:#f5f5f5;
  --paper-dim:#b0b0b0;
  --paper-faint:#808080;
}

/* The topographic contour background is an inline SVG data-URI, so it
   can't read CSS custom properties — replace it outright with a
   neutral-gray version of the same artwork. */
.contours.c-1{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cg fill='none' stroke='%23999999' stroke-width='1'%3E%3Cpath d='M-50,650 C 250,580 400,720 700,600 S 1150,520 1300,620'/%3E%3Cpath d='M-50,600 C 250,530 400,670 700,550 S 1150,470 1300,570'/%3E%3Cpath d='M-50,550 C 250,480 400,620 700,500 S 1150,420 1300,520'/%3E%3Cpath d='M-50,500 C 250,430 400,570 700,450 S 1150,370 1300,470'/%3E%3Cpath d='M-50,450 C 250,380 400,520 700,400 S 1150,320 1300,420'/%3E%3C/g%3E%3C/svg%3E");
}

/* Everything else — badges, gradients, box-shadows, form fields, the
   Shop, buttons, WooCommerce order tables, etc. — already reads from
   the custom properties above throughout the parent theme's CSS, so
   no further overrides are needed for the site to render in grayscale. */
