/*
Theme Name: Brenslie Ridge
Theme URI: https://brenslieridge.com
Author: Brenslie Ridge Holdings, LLC
Description: Block theme for Brenslie Ridge Holdings, LLC - a polished charcoal-and-platinum business site. Fully editable in the WordPress Site Editor (Appearance > Editor): click any element to change text, colors, layout, and images.
Version: 4.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: brenslie-ridge
*/

/* ---- Front-end polish layered on top of theme.json ---- */

/* Service cards: responsive grid with hover lift */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .services-grid{ grid-template-columns:1fr; } }

.service-card{
  position:relative;
  transition:transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:#4a4a4a !important;
  background-color:#181818 !important;
}
/* the little platinum accent bar at the top of each card */
.service-card .service-accent{
  width:36px; height:3px;
  background:linear-gradient(90deg,#ececec,#8f8f8f);
  margin-bottom:20px;
}

/* Hero gradient wash */
.hero{
  background:
    radial-gradient(1200px 400px at 15% -10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg,#0b0b0b 0%,#111 100%) !important;
}

/* Brand mark box */
.brand-mark{ line-height:1; }

/* Footer columns tidy on mobile */
@media (max-width:700px){ .brand-tagline{ display:none; } }

/* Buttons: subtle hover already set in theme.json; add a gentle shadow */
.wp-block-button__link{ box-shadow:0 1px 0 rgba(255,255,255,.15) inset; }

/* Section eyebrow spacing */
.eyebrow{ display:block; }
