.custom-hero {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: var(--content-area-background-color);
  color: var(--name-font-color);
  text-align: center;
  overflow: hidden;
}

.custom-hero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 45% at 50% -10%,
    color-mix(in srgb, var(--name-font-color) 10%, transparent),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

@supports not (color: color-mix(in srgb, black, white)) {
  .custom-hero__veil {
    background: transparent;
  }
}

.custom-hero__content {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
}

.custom-hero__realm {
  font-size: var(--hsElevate--h1__fontSize);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.7;
  color: var(--name-font-color);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}



.custom-hero__arch {
  width: min(20rem, 88vw);
  margin: 0 auto 1.75rem;
  color: var(--name-font-color, #fef6e0);
}

.custom-hero__arch-svg {
  display: block;
  width: 100%;
  height: auto;
}

.custom-hero__arch-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.9;
}

.custom-hero__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  color: var(--name-font-color, #fef6e0);
}

.custom-hero__star {
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  opacity: 0.88;
  transform: rotate(45deg);
}

.custom-hero__hook {
  font-size: var(--description-font-size);
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: var(--description-font-color);
  margin: 0 0 3rem;
}

.custom-hero__hook p {
  margin: 0.3rem 0;
}

.custom-hero__doors {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .custom-hero__doors {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
  }
}


@media (max-width: 1024px) {
  .custom-hero__realm {
    font-size: calc(
      var(--hsElevate--h1__fontSize) * var(--hsElevate--heading__tablet-modifier)
    );
  }
}

@media (max-width: 767px) {
  .custom-hero__realm {
    font-size: calc(
      var(--hsElevate--h1__fontSize) *
        var(
          --hsElevate--heading__mobile-modifier,
          var(--hsElevate--heading__tablet-modifier)
        ) - 10px
    );
  }
}

.custom-hero__door.custom-hero__door--journey,
.custom-hero__door.custom-hero__door--book{
 text-decoration: none !important;
}

.custom-hero__door-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.custom-hero__door {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  padding: 1rem 1.75rem;
  min-width: min(100%, 15rem);
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
font-family: var(--hsElevate--button--primary__font);
    font-size: var(--hsElevate--button--primary__fontSize);
    font-weight: var(--hsElevate--button--primary__fontWeight);
    font-style: var(--hsElevate--button--primary__fontStyle);
    color: var(--hsElevate--button--primary__textColor);
    border-width: var(--hsElevate--button--primary__borderThickness);
    background-color: var(--hsElevate--button--primary__backgroundColor);
    border-style: solid;
    border-color: var(--hsElevate--button--primary__borderColor);
    border-radius: var(--hsElevate--button--primary__borderRadius);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.custom-hero__door:hover {
  border-color: var(--button-border-hover-color, transparent);
  background-color: var(--button-hover-color, #fffefb);
  color: var(--button-text-hover-color, #02031c);
  transform: translateY(-1px);
}

.custom-hero__door:focus-visible {
  outline: 2px solid var(--button-text-color, #02031c);
  outline-offset: 3px;
}

.custom-hero__door:focus-visible:hover {
  outline-color: var(--button-text-hover-color, #02031c);
}

.custom-hero__door-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.custom-hero__door-title {
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  font-family: var(--hsElevate--button--primary__font);
    font-size: var(--hsElevate--button--primary__fontSize);
    font-weight: var(--hsElevate--button--primary__fontWeight);
    font-style: var(--hsElevate--button--primary__fontStyle);
    color: var(--hsElevate--button--primary__textColor);
    border-width: var(--hsElevate--button--primary__borderThickness);
    border-style: solid;
    border-color: var(--hsElevate--button--primary__borderColor);
    border-radius: var(--hsElevate--button--primary__borderRadius);
    text-decoration: none;
}

.custom-hero__door-note {
  font-size: var(--description-font-size);
  line-height: 1.45;
  color: var(--description-font-color);
  max-width: 17rem;
}

.custom-hero__door-note p {
  margin: 0;
}

.custom-hero__door-note p + p {
  margin-top: 0.35em;
}

.custom-hero__door-note em {
  font-style: italic;
  color: var(--name-font-color);
}
