:root {
  --border-radius: 18px;
}

.service-card, .widget-card {
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(10, 12, 18, .55) !important;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}

h1, h2, .title {
  letter-spacing: .12em;
}

.service-card, .widget-card {
  background: rgba(8, 12, 18, .72) !important;
}

/* ===== Blackcairn engraved section headers ===== */

/* Homepage headings */
h2 {
  font-family: "Garamond", "Georgia", "Times New Roman", serif !important;
  text-transform: uppercase !important;
  letter-spacing: .22em !important;        /* less spaced out */
  font-weight: 800 !important;             /* heavier = more carved */
  font-size: 18px !important;
  opacity: 1 !important;

  /* “Carved metal” color */
  color: rgba(235, 230, 218, .92) !important;

  /* Engraved effect: dark cut + bright edge */
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),         /* faint top edge */
    0 -1px 0 rgba(0,0,0,.65),              /* cut line */
    0 6px 16px rgba(0,0,0,.55) !important; /* depth */

  /* Slightly tighten spacing around headings */
  margin: 22px 0 10px !important;
}

/* Short engraved divider under each header */
h2::after{
  content:"";
  display:block;
  height:2px;
  margin-top:10px;
  width: min(420px, 92%);
  border-radius: 999px;

  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,.10) 18%,
      rgba(0,0,0,.55) 50%,
      rgba(255,255,255,.12) 82%,
      transparent 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.55),
    0 6px 14px rgba(0,0,0,.35);
  opacity: .85;
}

