/* ── Call To Action ── */
#callToAction {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 1.75rem;
  margin: 0;
  background: linear-gradient(135deg, var(--color-primary) 50%, #820032 100%);
}

#menu #callToAction {
  background: none;
  margin: 0 -1rem -5rem;
}

.cta-tagline {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 500;
  align-self: flex-end;
  text-align: right;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cta-label {
  display: inline-block;
  align-self: flex-start;
  padding: 0.375rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-heading__line1 {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.cta-heading__line2 {
  display: block;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.25rem, 10vw, 6rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -2px;
}

.cta-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 400px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: #f5f0ea;
  color: #1a0010;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.cta-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cta-tagline {
    display: none;
  }

  .cta-label {
    align-self: center;
  }

  .cta-heading {
    text-align: center;
  }

  .cta-heading__line1,
  .cta-heading__line2,
  .cta-body,
  .cta-note {
    text-align: center;
  }

  .cta-heading__line2 {
    letter-spacing: -1px;
  }

  .cta-body {
    max-width: none;
  }

  .cta-action {
    align-items: center;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1.15rem;
    border-radius: 16px;
  }
}

@media screen and (min-width: 768px) {
  #menu #callToAction {
    margin: 0 -2rem -6rem;
  }

  .cta-tagline {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    align-self: auto;
    max-width: 260px;
  }

  .cta-content {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  #callToAction {
    padding: 4rem 6.25rem;
    min-height: 640px;
    justify-content: space-between;
  }

  #menu #callToAction {
    margin: 0 -6.25rem -6.25rem;
  }

  .cta-tagline {
    right: 6.25rem;
  }

  .cta-content {
    margin-top: 3.5rem;
  }

  .cta-heading__line2 {
    font-size: clamp(5rem, 9vw, 8rem);
  }

  .cta-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
