body {
  background-color: var(--color-background);
}

.hero__cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__highlight-text {
  color: var(--color-text-muted);
}

.section__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__links {
  margin-top: var(--space-4);
}

.vip-strip {
  border-left: 4px solid var(--color-accent-gold);
  background: linear-gradient(135deg, var(--color-accent-gold-soft), #ffffff);
}

.vip-strip__content p {
  margin-bottom: var(--space-3);
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: transparent;
}

.faq-question::after {
  content: "+";
  font-size: var(--font-size-lg);
  color: var(--gray-500);
}

.faq-question[aria-expanded="true"]::after {
  content: "";
}

@media (min-width: 992px) {
  .cta-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
