/* Eturnal Rest -- advertise.html (For cemeteries). Small page-specific layer
   on top of base.css. Keep it minimal; reuse base classes wherever possible. */

/* hero (real blue brand, layered bg set by advertise.js) */
.adv-hero {
  position: relative;
  color: var(--blue-100);
  padding: var(--space-9) 0 var(--space-8);
  background: var(--blue-800);
  overflow: hidden;
  isolation: isolate;
}
.adv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}
.adv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    1100px 540px at 80% -10%,
    rgba(217, 140, 90, 0.18),
    transparent 62%
  );
  pointer-events: none;
}
.adv-hero__inner {
  position: relative;
}
.adv-hero h1 {
  color: var(--white);
  max-width: 18ch;
}
.adv-hero .lede {
  color: var(--blue-100);
  max-width: 56ch;
}
.adv-hero .eyebrow {
  color: var(--accent-100);
}
.adv-hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.adv-hero__note {
  margin-top: var(--space-4);
  font-size: 0.92rem;
  color: var(--blue-200);
  max-width: 56ch;
}

/* stat strip just under the hero */
.adv-stats {
  background: var(--white);
  border-bottom: 1px solid var(--line-cool);
}
.adv-stats__grid {
  text-align: center;
}
@media (max-width: 640px) {
  .adv-stats__grid {
    gap: var(--space-6);
  }
}

/* numbered "how it works" steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative;
  padding-left: 64px;
}
.step__num {
  position: absolute;
  left: 0;
  top: 2px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  border: 1px solid var(--blue-200);
}
.step h3 {
  margin-bottom: 0.25em;
}
.step p {
  color: var(--ink-2);
  margin-bottom: 0;
}

/* small reassurance row */
.reassure {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}
.reassure .chip {
  background: var(--white);
}

/* bulk panel */
.bulk-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}
.bulk-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}
.bulk-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.7em;
  color: var(--ink-2);
}
.bulk-list li::before {
  content: "\2713"; /* check */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-600);
  font-weight: 700;
}

/* "why ER" feature cards */
.feature {
  height: 100%;
}
.feature .card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: var(--space-2);
}
.feature__icon svg {
  width: 24px;
  height: 24px;
}

/* request form
   .form-card / .form-grid / .field--full / .form-status (+ .is-ok/.is-err)
   are owned by base.css (overhaul block). Only page-specific bits live here. */
.adv-submit {
  width: 100%;
  justify-content: center;
}
.req-required {
  color: var(--accent-700);
}

/* honeypot: visually + semantically hidden, still focusable-off for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .step {
    padding-left: 56px;
  }
}
