/* ============================================
   CTA / CONTACT — Full-screen booking prompt
   ============================================ */

.cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 22, 0.55);
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--side-pad);
  max-width: 640px;
}

.cta__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.cta__eyebrow {
  color: rgba(245, 240, 235, 0.6);
  margin-bottom: 20px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-ivory);
  margin-bottom: 20px;
}

.cta__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 40px;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta__btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.cta__btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.cta__btn-secondary {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  color: var(--warm-ivory);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 235, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.cta__btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (min-width: 768px) {
  .cta {
    min-height: 90vh;
  }

  .cta__title {
    font-size: 64px;
  }

  .cta__body {
    font-size: 16px;
  }

  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
