.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__content {
  padding-block: var(--space-20);
}

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

.hero__lead {
  max-width: 40rem;
  font-size: var(--font-size-md);
  color: var(--color-text);
}

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

.hero__meta {
  margin-top: var(--space-6);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.section__grid-reverse {
  direction: rtl;
}

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

.section__image-frame,
.section__image-frame-large,
.section__image-frame-small {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.section__image-frame::after,
.section__image-frame-large::after,
.section__image-frame-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(192, 91, 53, 0.18), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.section__image-frame-large img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.section__image-frame-small img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.section__intro {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

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

.section__cards {
  align-items: stretch;
}

.section__cards .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.section__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.section--evening {
  position: relative;
}

.section--evening .section__overlay {
  position: relative;
  z-index: 1;
  padding-block: var(--space-20);
}

.section--evening .pull-quote {
  margin-top: var(--space-6);
}

.section__gallery {
  display: flex;
  flex-direction: column;
}

.section__contact-card {
  align-self: stretch;
}

.section__contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.section__contact-list span {
  color: var(--color-text-muted);
  margin-right: var(--space-2);
}

@media (max-width: 960px) {
  .hero__content {
    padding-block: var(--space-16);
  }

  .section--evening .section__overlay {
    padding-block: var(--space-16);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

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

  .section__image-frame-large img {
    height: 320px;
  }

  .section__image-frame-small img {
    height: 200px;
  }
}
