.concept-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  background-color: var(--color-background);
}

.concept-hero__media {
  position: relative;
  overflow: hidden;
}

.concept-hero__image-wrapper {
  height: 100%;
}

.concept-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.concept-hero__content {
  display: flex;
  align-items: center;
}

.concept-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.concept-hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.concept-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 40rem;
}

.concept-hero__meta {
  max-width: 38rem;
}

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

.concept-section {
  background-color: var(--color-background);
}

.concept-section--surface {
  background: radial-gradient(circle at top left, rgba(200, 169, 106, 0.06), transparent 55%), var(--color-surface);
}

.concept-section--booking {
  background: radial-gradient(circle at top right, rgba(13, 91, 69, 0.3), transparent 60%), var(--color-background);
}

.concept-section__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.concept-section__grid {
  align-items: center;
}

.concept-section__grid--reverse {
  direction: rtl;
}

.concept-section__grid--reverse > * {
  direction: ltr;
}

.concept-section__visual {
  position: relative;
}

.concept-section__visual--hero::before,
.concept-section__visual--booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(200, 169, 106, 0.35), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.concept-section__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.concept-section__figure--tall {
  max-height: 520px;
}

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

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

.concept-section__links--wrap {
  justify-content: flex-start;
}

.concept-section__grid--cards {
  align-items: flex-start;
}

.concept-section__intro {
  display: flex;
  flex-direction: column;
}

.concept-event-card,
.concept-ref-card {
  height: 100%;
}

.concept-section__grid--booking {
  align-items: center;
}

@media (max-width: 1023px) {
  .concept-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .concept-hero__media {
    height: 320px;
  }

  .concept-hero__inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}

@media (max-width: 767px) {
  .concept-hero__media {
    height: 260px;
  }

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

  .concept-section__grid--reverse {
    direction: ltr;
  }
}
