/* Landing pages. All selectors are scoped to .vr-landing. */
.vr-landing {
  --vr-bg: #f5f3ef;
  --vr-surface: #fff;
  --vr-soft: #ece5dc;
  --vr-ink: #1d2925;
  --vr-text: #33423c;
  --vr-muted: #68746f;
  --vr-line: #ded8ce;
  --vr-gold: #9a7048;
  --vr-gold-dark: #7d5634;
  --vr-green: #203a32;
  --vr-radius: 22px;
  --vr-shadow: 0 18px 50px rgba(27, 38, 34, 0.1);
  box-sizing: border-box;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 0 72px;
  color: var(--vr-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.vr-landing *,
.vr-landing *::before,
.vr-landing *::after {
  box-sizing: border-box;
}

/* Every main block uses exactly the same outer width. */
.vr-landing > .vr-section,
.vr-landing > .vr-hero {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.vr-landing h1,
.vr-landing h2,
.vr-landing h3,
.vr-landing p,
.vr-landing ul {
  padding: 0;
}

.vr-landing h1,
.vr-landing h2,
.vr-landing h3 {
  color: var(--vr-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.vr-landing img {
  display: block;
  max-width: 100%;
}

.vr-landing .vr-hero {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(32, 58, 50, 0.11);
  border-radius: 24px;
  background: var(--vr-surface);
  box-shadow: var(--vr-shadow);
}

.vr-landing .vr-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.vr-landing .vr-eyebrow,
.vr-landing .vr-kicker {
  margin: 0 0 14px;
  color: var(--vr-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vr-landing .vr-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vr-landing .vr-eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.vr-landing .vr-hero h1 {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.vr-landing .vr-hero__lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--vr-muted);
  font-size: 18px;
  line-height: 1.55;
}

.vr-landing .vr-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vr-landing .vr-price {
  margin: 0;
  color: var(--vr-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
  white-space: nowrap;
}

.vr-landing .vr-price small {
  display: block;
  margin-bottom: 3px;
  color: var(--vr-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vr-landing .vr-button,
.vr-landing .vr-button:link,
.vr-landing .vr-button:visited {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--vr-gold);
  box-shadow: 0 10px 24px rgba(154, 112, 72, 0.24);
  color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vr-landing .vr-button:hover {
  background: var(--vr-gold-dark);
  transform: translateY(-1px);
}

.vr-landing .vr-hero__media {
  position: relative;
  min-height: 100%;
  background: var(--vr-green);
}

.vr-landing .vr-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(22, 39, 34, 0.04), rgba(22, 39, 34, 0.36));
  content: "";
}

.vr-landing .vr-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vr-landing .vr-section {
  margin-top: 72px;
}

.vr-landing .vr-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 30px;
}

.vr-landing .vr-section__heading h2,
.vr-landing .vr-services h2,
.vr-landing .vr-trust h2,
.vr-landing .vr-information h2,
.vr-landing .vr-final h2 {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 48px);
  line-height: 1.08;
}

.vr-landing .vr-section__heading p {
  margin: 0;
  color: var(--vr-muted);
}

.vr-landing .vr-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.vr-landing .vr-package {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--vr-line);
  border-radius: var(--vr-radius);
  background: var(--vr-surface);
  box-shadow: 0 10px 32px rgba(31, 42, 38, 0.06);
}

.vr-landing .vr-package--accent {
  border-color: rgba(32, 58, 50, 0.18);
  background: var(--vr-green);
}

.vr-landing .vr-package__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--vr-line);
}

.vr-landing .vr-package--accent .vr-package__heading {
  border-color: rgba(255, 255, 255, 0.16);
}

.vr-landing .vr-package h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.vr-landing .vr-package--accent h3 {
  color: #fff;
}

.vr-landing .vr-package__price {
  flex: 0 0 auto;
  margin: 0;
  color: var(--vr-gold-dark);
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.vr-landing .vr-package--accent .vr-package__price {
  color: #e0c3a2;
}

.vr-landing .vr-package ul,
.vr-landing .vr-checklist,
.vr-landing .vr-trust ul {
  list-style: none;
}

.vr-landing .vr-package ul {
  margin: 0 0 24px;
}

.vr-landing .vr-package li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(31, 42, 38, 0.08);
  color: var(--vr-text);
  font-size: 15px;
}

.vr-landing .vr-package--accent li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.vr-landing .vr-package li::before,
.vr-landing .vr-checklist li::before {
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid var(--vr-gold);
  border-left: 2px solid var(--vr-gold);
  content: "";
  transform: rotate(-45deg);
}

.vr-landing .vr-package li::before {
  top: 17px;
  left: 2px;
}

.vr-landing .vr-package .vr-button {
  width: 100%;
  margin-top: auto;
}

.vr-landing .vr-package--accent .vr-button {
  background: #fff;
  box-shadow: none;
  color: var(--vr-green) !important;
}

.vr-landing .vr-services {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.vr-landing .vr-services__title {
  position: sticky;
  top: 24px;
}

.vr-landing .vr-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  border-top: 1px solid var(--vr-line);
}

.vr-landing .vr-checklist li {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--vr-line);
  color: var(--vr-text);
  font-size: 15px;
}

.vr-landing .vr-checklist li::before {
  top: 25px;
  left: 2px;
}

.vr-landing .vr-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
}

.vr-landing .vr-process::before {
  position: absolute;
  top: 22px;
  right: 13%;
  left: 13%;
  height: 1px;
  background: var(--vr-line);
  content: "";
}

.vr-landing .vr-process article {
  position: relative;
  z-index: 1;
}

.vr-landing .vr-process span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 7px solid var(--vr-bg);
  border-radius: 50%;
  background: var(--vr-green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.vr-landing .vr-process h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.2;
}

.vr-landing .vr-process p {
  margin: 0;
  color: var(--vr-muted);
  font-size: 15px;
}

.vr-landing .vr-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 24px;
  background: var(--vr-green);
  box-shadow: 0 22px 55px rgba(23, 42, 35, 0.2);
}

.vr-landing .vr-trust h2 {
  color: #fff;
}

.vr-landing .vr-trust .vr-kicker {
  color: #d9b98f;
}

.vr-landing .vr-trust ul {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.vr-landing .vr-trust li {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.vr-landing .vr-trust li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid #d9b98f;
  border-radius: 50%;
  content: "";
}

.vr-landing .vr-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 215px);
  gap: 14px;
}

.vr-landing .vr-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--vr-green);
}

.vr-landing .vr-gallery a:first-child {
  grid-row: 1 / span 2;
}

.vr-landing .vr-gallery a:last-child {
  display: none;
}

.vr-landing .vr-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vr-landing .vr-gallery a:hover img {
  transform: scale(1.025);
}

.vr-landing .vr-information {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--vr-line);
  border-radius: var(--vr-radius);
  background: var(--vr-surface);
}

.vr-landing .vr-information h2 {
  margin-bottom: 24px;
}

.vr-landing .vr-information h3 {
  margin: 32px 0 12px;
  font-size: 28px;
}

.vr-landing .vr-information p {
  margin: 0 0 16px;
  color: var(--vr-muted);
}

.vr-landing .vr-information strong {
  color: var(--vr-ink);
}

.vr-landing .vr-seo-link {
  margin: 26px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--vr-line);
  font-size: 14px;
}

.vr-landing .vr-seo-link a {
  color: var(--vr-gold-dark);
}

.vr-landing .vr-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 40px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 24px;
  background: var(--vr-soft);
}

.vr-landing .vr-final > div > p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--vr-muted);
}

.vr-landing .vr-final__action {
  text-align: center;
}

.vr-landing .vr-final__action .vr-button {
  width: 100%;
}

.vr-landing .vr-final__action p {
  margin: 10px 0 0;
  color: var(--vr-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .vr-landing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .vr-landing .vr-hero {
    grid-template-columns: 1fr;
  }

  .vr-landing .vr-hero__media {
    min-height: 320px;
  }

  .vr-landing .vr-section__heading,
  .vr-landing .vr-services,
  .vr-landing .vr-trust,
  .vr-landing .vr-final {
    grid-template-columns: 1fr;
  }

  .vr-landing .vr-services__title {
    position: static;
  }

  .vr-landing .vr-final {
    gap: 26px;
  }
}

@media (max-width: 700px) {
  .vr-landing {
    padding: 16px 14px 52px;
    font-size: 16px;
  }

  .vr-landing .vr-hero {
    min-height: 0;
    border-radius: 18px;
  }

  .vr-landing .vr-hero__content {
    padding: 30px 22px;
  }

  .vr-landing .vr-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .vr-landing .vr-hero__lead {
    font-size: 16px;
  }

  .vr-landing .vr-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vr-landing .vr-button {
    width: 100%;
  }

  .vr-landing .vr-hero__media {
    min-height: 220px;
  }

  .vr-landing .vr-section {
    margin-top: 48px;
  }

  .vr-landing .vr-section__heading {
    gap: 14px;
  }

  .vr-landing .vr-packages,
  .vr-landing .vr-checklist,
  .vr-landing .vr-process {
    grid-template-columns: 1fr;
  }

  .vr-landing .vr-package {
    padding: 24px 20px;
  }

  .vr-landing .vr-package__heading {
    flex-direction: column;
    gap: 6px;
  }

  .vr-landing .vr-process {
    gap: 28px;
  }

  .vr-landing .vr-process::before {
    top: 20px;
    bottom: 20px;
    left: 22px;
    width: 1px;
    height: auto;
  }

  .vr-landing .vr-process article {
    padding-left: 64px;
  }

  .vr-landing .vr-process span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .vr-landing .vr-trust,
  .vr-landing .vr-information,
  .vr-landing .vr-final {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .vr-landing .vr-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 145px);
    gap: 10px;
  }

  .vr-landing .vr-gallery a:first-child {
    grid-row: auto;
  }

  .vr-landing .vr-gallery a:last-child {
    display: block;
  }
}

/* Integration with the legacy Vavilon template: 1000px sheet / 970px article. */
.vr-landing {
  max-width: 1000px;
  padding: 24px 0 64px;
}

.vr-landing p,
.vr-landing li {
  text-align: left !important;
  word-spacing: normal !important;
}

.vr-landing .vr-hero {
  min-height: 0;
  grid-template-columns: 1fr;
}

.vr-landing .vr-hero__content {
  padding: 42px 46px 38px;
}

.vr-landing .vr-hero h1 {
  max-width: none;
  font-size: clamp(40px, 5vw, 52px);
}

.vr-landing .vr-hero__lead {
  max-width: 800px;
}

.vr-landing .vr-hero__media {
  min-height: 0;
  aspect-ratio: 665 / 200;
}

.vr-landing .vr-hero__media img {
  object-position: center;
}

.vr-landing .vr-section {
  margin-top: 58px;
}

.vr-landing .vr-section__heading {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.vr-landing .vr-section__heading h2,
.vr-landing .vr-services h2,
.vr-landing .vr-trust h2,
.vr-landing .vr-information h2,
.vr-landing .vr-final h2 {
  font-size: clamp(30px, 3.5vw, 42px);
}

.vr-landing .vr-packages {
  gap: 16px;
}

.vr-landing .vr-package {
  padding: 26px 24px;
}

.vr-landing .vr-package h3 {
  font-size: 23px;
}

.vr-landing .vr-services {
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 46px;
}

.vr-landing .vr-process {
  gap: 24px;
}

.vr-landing .vr-trust {
  gap: 48px;
  padding: 46px;
}

.vr-landing .vr-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 210px);
  gap: 12px;
}

.vr-landing .vr-gallery a:first-child {
  grid-row: auto;
}

.vr-landing .vr-gallery a:last-child {
  display: block;
}

.vr-landing .vr-information,
.vr-landing .vr-final {
  padding: 44px 46px;
}

.vr-landing .vr-final {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  gap: 32px;
}

@media (max-width: 760px) {
  .vr-landing {
    padding: 14px 0 48px;
  }

  .vr-landing .vr-hero__content {
    padding: 28px 22px 30px;
  }

  .vr-landing .vr-hero h1 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .vr-landing .vr-hero__media {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .vr-landing .vr-section {
    margin-top: 46px;
  }

  .vr-landing .vr-section__heading,
  .vr-landing .vr-services,
  .vr-landing .vr-trust,
  .vr-landing .vr-final {
    grid-template-columns: 1fr;
  }

  .vr-landing .vr-packages {
    grid-template-columns: 1fr;
  }

  .vr-landing .vr-services {
    gap: 22px;
  }

  .vr-landing .vr-trust,
  .vr-landing .vr-information,
  .vr-landing .vr-final {
    padding: 28px 22px;
  }

  .vr-landing .vr-gallery {
    grid-template-rows: repeat(2, 135px);
    gap: 9px;
  }
}

/* Cremation page refinements for the narrow legacy content column. */
.vr-landing .vr-hero__media {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  background: transparent;
}

.vr-landing .vr-hero__media::after {
  display: none;
}

.vr-landing .vr-hero__media img {
  display: block;
  width: 100%;
  height: auto !important;
  border: 0 !important;
  outline: 0 !important;
  object-fit: contain;
  object-position: center;
}

.vr-landing .vr-package li::before,
.vr-landing .vr-checklist li::before,
.vr-landing .vr-trust li::before {
  position: absolute;
  right: auto;
  bottom: auto;
  display: block;
  margin: 0;
  vertical-align: baseline;
}

.vr-landing .vr-package li::before {
  top: 8px;
  left: 1px;
  width: 20px;
  height: 25px;
  border: 0;
  color: var(--vr-gold);
  content: "✓";
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  transform: none;
}

.vr-landing .vr-checklist li::before {
  top: 21px;
  left: 8px;
  width: 4px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--vr-gold);
  color: transparent;
  content: "";
  font-size: 0;
  line-height: 0;
  transform: none;
}

.vr-landing .vr-process {
  gap: 18px;
  margin-top: 38px;
  counter-reset: vr-step;
}

.vr-landing .vr-process::before {
  display: none;
}

.vr-landing .vr-process article {
  min-width: 0;
  padding: 25px 22px 24px;
  border: 1px solid var(--vr-line);
  border-radius: 18px;
  background: #fff;
  counter-increment: vr-step;
}

.vr-landing .vr-process article::before {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  border: 0;
  border-radius: 50%;
  background: var(--vr-green);
  box-shadow: 0 0 0 6px #ece5dc;
  color: #fff;
  content: counter(vr-step, decimal-leading-zero);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.vr-landing .vr-process span {
  display: none !important;
}

.vr-landing .vr-trust li::before {
  top: 22px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 0;
  background: #d9b98f;
  box-shadow: 0 0 0 4px rgba(217, 185, 143, 0.16);
}

.vr-landing .vr-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
}

.vr-landing .vr-gallery > * {
  display: flex;
  overflow: hidden;
  align-self: start;
  justify-content: center;
  border-radius: 16px;
  background: transparent;
}

.vr-landing .vr-gallery > :nth-child(1) {
  grid-row: 1;
  grid-column: 1;
}

.vr-landing .vr-gallery > :nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.vr-landing .vr-gallery img {
  display: block;
  width: 100%;
  height: auto !important;
  border: 0 !important;
  outline: 0 !important;
  object-fit: contain;
  transform: none !important;
}

@media (max-width: 760px) {
  .vr-landing .vr-hero__media {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .vr-landing .vr-process {
    gap: 16px;
    margin-top: 28px;
  }

  .vr-landing .vr-process article {
    min-height: 0;
    padding: 24px 20px 24px 82px;
  }

  .vr-landing .vr-process article::before {
    position: absolute;
    top: 24px;
    left: 20px;
    margin: 0;
  }

  .vr-landing .vr-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 8px;
  }

  .vr-landing .vr-gallery > :nth-child(1) {
    grid-row: 1;
    grid-column: 1 / span 2;
  }

  .vr-landing .vr-gallery > :nth-child(2) {
    grid-row: 2;
    grid-column: 1 / span 2;
  }
}

@media (max-width: 432px) {
  .vr-landing {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  html body .art-headline-bottom {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .vr-landing .vr-process article {
    z-index: 0;
  }
}

/* Homepage: a calm first screen without the former image catalogue. */
.vr-home .vr-home-hero {
  display: block;
  border-color: rgba(32, 58, 50, 0.16);
  background:
    radial-gradient(circle at 92% 12%, rgba(154, 112, 72, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3eee7 100%);
}

.vr-home .vr-home-hero .vr-hero__content {
  padding: 54px 56px 42px;
}

.vr-home .vr-home-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 62px);
}

.vr-home .vr-home-hero .vr-hero__lead {
  max-width: 720px;
  font-size: 19px;
}

.vr-home .vr-home-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.vr-home .vr-home-hero__actions > p {
  margin: 0;
  color: var(--vr-ink);
  font-size: 18px;
  line-height: 1.25;
}

.vr-home .vr-home-hero__actions small {
  display: block;
  margin-top: 5px;
  color: var(--vr-muted);
  font-size: 13px;
}

.vr-home .vr-home-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px -56px -42px;
  padding: 0 56px;
  border-top: 1px solid var(--vr-line);
  list-style: none;
}

.vr-home .vr-home-points li {
  min-width: 0;
  padding: 24px 26px 26px 0;
}

.vr-home .vr-home-points li + li {
  padding-left: 26px;
  border-left: 1px solid var(--vr-line);
}

.vr-home .vr-home-points strong,
.vr-home .vr-home-points small {
  display: block;
}

.vr-home .vr-home-points strong {
  margin-bottom: 5px;
  color: var(--vr-ink);
  font-size: 15px;
}

.vr-home .vr-home-points small {
  color: var(--vr-muted);
  font-size: 14px;
  line-height: 1.45;
}

.vr-home .vr-home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vr-home .vr-home-service {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--vr-line);
  border-radius: var(--vr-radius);
  background: var(--vr-surface);
  box-shadow: 0 10px 32px rgba(31, 42, 38, 0.05);
}

.vr-home .vr-home-service--accent {
  border-color: transparent;
  background: var(--vr-green);
}

.vr-home .vr-home-service h3 {
  margin: 0 0 13px;
  font-size: 29px;
  line-height: 1.12;
}

.vr-home .vr-home-service > p:not(.vr-kicker) {
  margin: 0 0 24px;
  color: var(--vr-muted);
}

.vr-home .vr-home-service > a,
.vr-home .vr-home-service > a:link,
.vr-home .vr-home-service > a:visited {
  margin-top: auto;
  color: var(--vr-gold-dark) !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
}

.vr-home .vr-home-service > a::after {
  margin-left: 8px;
  content: "→";
}

.vr-home .vr-home-service--accent h3,
.vr-home .vr-home-service--accent > p:not(.vr-kicker),
.vr-home .vr-home-service--accent > a,
.vr-home .vr-home-service--accent > a:link,
.vr-home .vr-home-service--accent > a:visited {
  color: #fff !important;
}

.vr-home .vr-home-service--accent .vr-kicker {
  color: #d9b98f;
}

@media (max-width: 760px) {
  .vr-home .vr-home-hero .vr-hero__content {
    padding: 34px 22px 0;
  }

  .vr-home .vr-home-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .vr-home .vr-home-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .vr-home .vr-home-hero__actions .vr-button {
    width: 100%;
  }

  .vr-home .vr-home-points {
    grid-template-columns: 1fr;
    margin: 32px -22px 0;
    padding: 0 22px;
  }

  .vr-home .vr-home-points li {
    padding: 19px 0;
  }

  .vr-home .vr-home-points li + li {
    padding-left: 0;
    border-top: 1px solid var(--vr-line);
    border-left: 0;
  }

  .vr-home .vr-home-services__grid {
    grid-template-columns: 1fr;
  }

  .vr-home .vr-home-service {
    min-height: 0;
    padding: 26px 22px;
  }
}

/* Homepage visual, custom markers and interactive service links. */
.vr-home .vr-home-hero__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.vr-home .vr-home-hero__visual img {
  display: block;
  width: 100%;
  height: auto !important;
  border: 0 !important;
  border-radius: 14px;
  outline: 0 !important;
  object-fit: contain;
  transform: none !important;
}

.vr-home .vr-home-points {
  background-image: none !important;
  list-style: none !important;
}

.vr-home .vr-home-points li {
  --vr-point-icon: none;
  position: relative;
  background: none !important;
  list-style: none !important;
}

.vr-home .vr-home-points li::before {
  position: static !important;
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  margin: 0 0 14px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background-color: rgba(154, 112, 72, 0.12) !important;
  background-image: var(--vr-point-icon) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 20px 20px !important;
  box-shadow: none !important;
  color: transparent !important;
  content: "" !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: none !important;
}

.vr-home .vr-home-points li:nth-child(1) {
  --vr-point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.1 9a3 3 0 1 1 5.83 1c0 2-3 2-3 4'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.vr-home .vr-home-points li:nth-child(2) {
  --vr-point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-8 9-4.5-1.5-8-4-8-9V5l8-3 8 3z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.vr-home .vr-home-points li:nth-child(3) {
  --vr-point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7V6a2 2 0 0 0-2-2H5a3 3 0 0 0 0 6h15v8a2 2 0 0 1-2 2H5a3 3 0 0 1-3-3V7'/%3E%3Cpath d='M16 14h.01'/%3E%3C/svg%3E");
}

.vr-home .vr-home-service {
  --vr-service-icon: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vr-home .vr-home-service::before {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  background-color: rgba(154, 112, 72, 0.12);
  background-image: var(--vr-service-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  content: "";
}

.vr-home .vr-home-service--accent::before {
  background-color: rgba(255, 255, 255, 0.1);
}

.vr-home .vr-home-service--funeral {
  --vr-service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23d9b98f'%3E%3Cpath d='M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6v-31.5C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v64c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8.9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8C512 69.5 506.5 64 499.7 64H400c-44.2 0-80 35.8-80 80zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z'/%3E%3C/svg%3E");
}

.vr-home .vr-home-service--cremation {
  --vr-service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22c4.4 0 8-3.6 8-8 0-3-1.5-5-3-7-1 3-2.5 4-4 5 0-4-2-8-6-10 1 5-3 7-3 12 0 4.4 3.6 8 8 8Z'/%3E%3Cpath d='M8.5 18c0-2 1.5-3.5 3.5-5 0 2 1 3 2 4.5'/%3E%3C/svg%3E");
}

.vr-home .vr-home-service--transport {
  --vr-service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17h4V5H2v12h3'/%3E%3Cpath d='M14 9h4l4 4v4h-2'/%3E%3Ccircle cx='7.5' cy='17.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E");
}

.vr-home .vr-home-service--guide {
  --vr-service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='18' x='5' y='3' rx='2'/%3E%3Cpath d='M9 3V1h6v2M9 8h6M9 12h6M9 16h4'/%3E%3C/svg%3E");
}

.vr-home .vr-button[href^="tel:"]::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.33 1.84.56 2.8.69A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
}

.vr-home .vr-home-service > a,
.vr-home .vr-home-service > a:link,
.vr-home .vr-home-service > a:visited {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(154, 112, 72, 0.3);
  border-radius: 10px;
  background: rgba(154, 112, 72, 0.08);
  color: var(--vr-gold-dark) !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vr-home .vr-home-service--accent > a,
.vr-home .vr-home-service--accent > a:link,
.vr-home .vr-home-service--accent > a:visited {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  .vr-home .vr-home-service:hover {
    border-color: rgba(154, 112, 72, 0.4);
    box-shadow: 0 16px 38px rgba(31, 42, 38, 0.1);
    transform: translateY(-3px);
  }

  .vr-home .vr-home-service > a:hover {
    border-color: var(--vr-gold);
    background: var(--vr-gold);
    color: #fff !important;
    transform: translateX(2px);
  }

  .vr-home .vr-home-service--accent > a:hover {
    border-color: #fff;
    background: #fff;
    color: var(--vr-green) !important;
  }
}

/* Compact icon rows. */
.vr-home .vr-home-points li {
  padding-top: 24px !important;
  padding-right: 26px !important;
  padding-bottom: 26px !important;
  padding-left: 54px !important;
}

.vr-home .vr-home-points li + li {
  padding-left: 80px !important;
}

.vr-home .vr-home-points li::before {
  position: absolute !important;
  top: 24px !important;
  left: 0 !important;
  margin: 0 !important;
}

.vr-home .vr-home-points li + li::before {
  left: 26px !important;
}

.vr-home .vr-home-points strong {
  display: flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 5px;
}

.vr-home .vr-home-service {
  position: relative;
}

.vr-home .vr-home-service::before {
  margin-bottom: 18px;
}

.vr-home .vr-home-service > .vr-kicker {
  position: absolute;
  top: 46px;
  left: 98px;
  margin: 0;
}

@media (max-width: 760px) {
  .vr-home .vr-home-hero__visual {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .vr-home .vr-home-points li,
  .vr-home .vr-home-points li + li {
    padding: 18px 0 18px 52px !important;
  }

  .vr-home .vr-home-points li::before,
  .vr-home .vr-home-points li + li::before {
    top: 18px !important;
    left: 0 !important;
  }

  .vr-home .vr-home-service > .vr-kicker {
    top: 42px;
    left: 92px;
  }
}
